
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            color: #333;
            background-color: #f7f6f2;
        }
        
        /* Header with Hero Image */
        .about-hero {
            position: relative;
            margin-top: -40px; /* Adjusted to prevent overlap with navbar */
            width: 100%;
            height: 110vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .about-hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        .about-hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            max-width: 800px;
            padding: 20px;
        }
        
        .about-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            font-weight: 100;
            letter-spacing: 1px;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 0;
        }
        
        /* Common Section Styles */
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        
        .section-subtitle {
            color: #c19a6b;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 200;
            margin-bottom: 30px;
            color: #222;
            line-height: 1.2;
        }
        
        .section-description {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }
        
        /* Mission/Vision Section */
        .mv-section {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .mv-card {
            flex: 1;
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .mv-icon {
            color: #c19a6b;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .mv-title {
            font-size: 1.5rem;
            font-weight: 200;
            margin-bottom: 20px;
            color: #222;
            position: relative;
            padding-bottom: 15px;
        }
        
        .mv-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #c19a6b;
        }
        
        /* About Section */
        .about-content {
            display: flex;
            gap: 40px;
            align-items: center;
            margin-bottom: 60px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            height: 500px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Timeline Section */
        .timeline-section {
            position: relative;
            padding: 80px 0;
            background-color: #fff;
        }
        
        .timeline-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 2px;
            background-color: #c19a6b;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: white;
            border: 4px solid #c19a6b;
            border-radius: 50%;
            top: 30px;
            z-index: 1;
        }
        
        .left {
            left: 0;
            text-align: right;
        }
        
        .right {
            left: 50%;
            text-align: left;
        }
        
        .left::after {
            right: -12px;
        }
        
        .right::after {
            left: -12px;
        }
        
        .timeline-content {
            padding: 20px;
            background-color: #f7f6f2;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .timeline-year {
            color: #c19a6b;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .timeline-title {
            font-size: 1.3rem;
            font-weight: 400;
            margin-bottom: 10px;
        }
        
        /* History Section */
        .history-section {
            background-color: #E3D9D2;
            padding: 80px 0;
        }
        
        .history-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            gap: 40px;
            align-items: center;
        }
        
        .history-image {
            flex: 1;
            height: 500px;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .history-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .mv-section {
                flex-direction: column;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                width: 100%;
                order: -1;
            }
            
            .history-container {
                flex-direction: column;
            }
            
            .history-image {
                width: 100%;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item::after {
                left: 21px;
            }
            
            .left, .right {
                left: 0;
                text-align: left;
            }
        }
        
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .mv-card {
                padding: 30px;
            }
            
            .about-image, .history-image {
                height: 400px;
            }
        }

        /* Round WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 18px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      z-index: 999;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none !important;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .whatsapp-icon {
      color: white;
    }


    @media (max-width: 768px) {
      .whatsapp-float {
        bottom: 20px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 12px;
      }
    }
    