/* Mobile Styles (up to 480px) */
@media (max-width: 480px) {
  /* Base container adjustments */
  .container {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  /* Hero Section */
  .about-hero {
    height: 60vh;
    width: 100%;
    overflow: hidden;
  }

  .hero-content {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  /* Who We Are Section */
  .who-we-are {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .organization-summary h3 {
    font-size: 1.5rem;
  }

  .organization-summary p {
    font-size: 1rem;
  }

  /* Why Manilom Section */
  .why-manilom {
    padding: 60px 0;
    width: 100%;
    overflow: hidden;
  }

  .why-manilom-content {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .why-manilom-content h2 {
    font-size: 1.8rem;
  }

  .why-manilom-text .intro-text {
    font-size: 1rem;
  }

  .why-manilom-list li {
    font-size: 0.95rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 20px;
  }

  .benefit-item {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .benefit-item h3 {
    font-size: 1.2rem;
  }

  .benefit-item p {
    font-size: 0.9rem;
  }

  /* Vision & Mission Sections */
  .vision-section,
  .mission-section {
    padding: 60px 0;
  }

  .vision-content h2,
  .mission-content h2 {
    font-size: 1.8rem;
  }

  .vision-content h3,
  .mission-content h3 {
    font-size: 1.5rem;
  }

  .vision-content blockquote,
  .mission-content blockquote {
    font-size: 1.2rem;
    padding: 15px;
  }

  /* Core Values Section */
  .core-values {
    padding: 60px 0;
  }

  .core-values h2 {
    font-size: 1.8rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-item {
    padding: 20px;
  }

  /* Leadership Section */
  .leadership-section {
    padding: 60px 0;
    width: 100%;
    overflow: hidden;
  }

  .leadership-content h2 {
    font-size: 1.8rem;
  }

  .leadership-text .intro-text {
    font-size: 1rem;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 20px;
  }

  .leader-card {
    width: 100%;
    box-sizing: border-box;
  }

  .leader-image {
    height: 200px;
  }

  .leader-info h3 {
    font-size: 1.2rem;
  }

  .leader-info .position {
    font-size: 0.95rem;
  }

  .leader-info .bio {
    font-size: 0.9rem;
  }

  /* History Section */
  .history-section {
    padding: 60px 0;
    width: 100%;
    overflow: hidden;
  }

  .history-content h2 {
    font-size: 1.8rem;
  }

  .history-text .intro-text {
    font-size: 1.1rem;
  }

  .timeline:before {
    left: 0;
  }

  .timeline-item {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    flex-direction: column;
    align-items: flex-start;
  }

  .year {
    margin-bottom: 10px;
  }

  .event {
    max-width: 100%;
  }

  /* Legal Status Section */
  .legal-status {
    padding: 60px 0;
    width: 100%;
    overflow: hidden;
  }

  .legal-content h2 {
    font-size: 1.8rem;
  }

  .legal-text h3 {
    font-size: 1.5rem;
  }

  .certifications {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 20px;
  }

  .certification-item {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
  }

  .certification-image img {
    width: 80px;
    height: 80px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 0;
  }

  .footer-sections {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }

  .input-group {
    flex-direction: column;
  }

  .input-group button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .separator {
    display: none;
  }
} 