  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            padding: 15px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .logo {
            display: flex;
            align-items: center;
            color: white;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
        }

        .logo i {
            font-size: 28px;
            margin-right: 10px;
            color: #1abc9c;
        }

        nav {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #1abc9c;
        }

        .cta-button {
            background: #1abc9c;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background: #16a085;
        }

        /* Hero Section */
        .hero-about {
            position: relative;
            height: 400px;
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%232c3e50" width="1200" height="400"/></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .hero-about::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
        }

        .hero-about-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-about > *:not(.hero-about-bg) {
            position: relative;
            z-index: 2;
        }

        .hero-about h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero-about p {
            font-size: 18px;
            max-width: 800px;
        }

        /* Main Content */
        main {
            background: #f5f5f5;
        }

        .about-section {
            padding: 80px 50px;
        }

        .about-section:nth-child(even) {
            background: white;
        }

        .section-title {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 20px;
            text-transform: uppercase;
            text-align: center;
        }

        .section-subtitle {
            font-size: 16px;
            color: #666;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }

        /* Story Section */
        .story-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .story-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #1abc9c, #16a085);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .story-image i {
            font-size: 100px;
            color: white;
            opacity: 0.3;
        }

        .story-content {
            padding: 20px;
        }

        .story-content h3 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .story-content p {
            font-size: 15px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        /* Mission Vision Values */
        .mvv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .mvv-card {
            background: white;
            padding: 40px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .mvv-card:hover {
            transform: translateY(-10px);
        }

        .mvv-icon {
            font-size: 60px;
            color: #1abc9c;
            margin-bottom: 20px;
        }

        .mvv-card h3 {
            font-size: 24px;
            color: #2c3e50;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .mvv-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
        }

        .mvv-card ul {
            list-style: none;
            padding: 0;
            margin-top: 20px;
            text-align: left;
        }

        .mvv-card ul li {
            padding: 8px 0;
            font-size: 14px;
            color: #555;
            padding-left: 25px;
            position: relative;
        }

        .mvv-card ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #1abc9c;
            font-weight: bold;
            font-size: 16px;
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .team-card:hover {
            transform: translateY(-10px);
        }

        .team-image {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #1abc9c, #16a085);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-image i {
            font-size: 80px;
            color: white;
            opacity: 0.3;
        }

        .team-info {
            padding: 25px;
            text-align: center;
        }

        .team-info h3 {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .team-info .role {
            font-size: 14px;
            color: #1abc9c;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .team-info p {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
        }

        /* Why Choose Us */
        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .reason-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            border: 2px solid #ecf0f1;
            transition: all 0.3s;
        }

        .reason-card:hover {
            border-color: #1abc9c;
            transform: translateY(-5px);
        }

        .reason-icon {
            font-size: 50px;
            color: #1abc9c;
            margin-bottom: 20px;
        }

        .reason-card h3 {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .reason-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #1abc9c, #16a085);
            padding: 80px 50px;
            text-align: center;
            color: white;
        }

        .stats-section h2 {
            font-size: 36px;
            margin-bottom: 50px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 14px;
            text-transform: uppercase;
            opacity: 0.9;
        }

        /* CTA Section */
        .cta-section {
            background: #2c3e50;
            padding: 80px 50px;
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .btn {
            padding: 15px 35px;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            font-size: 16px;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            background: #1abc9c;
            color: white;
        }

        .btn:hover {
            background: #16a085;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: #1a252f;
            color: white;
            padding: 40px 50px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        footer h4 {
            font-size: 14px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        footer p,
        footer a {
            font-size: 12px;
            color: #bdc3c7;
            text-decoration: none;
            line-height: 1.8;
        }

        footer a:hover {
            color: #1abc9c;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icons a {
            width: 35px;
            height: 35px;
            background: #1abc9c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            transition: background 0.3s;
        }

        .social-icons a:hover {
            background: #16a085;
        }

        .location-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 10px;
            color: #1abc9c;
            transition: color 0.3s;
        }

        .location-link:hover {
            color: #16a085;
        }

        @media (max-width: 968px) {
            header {
                flex-direction: column;
                padding: 15px;
            }

            nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
                margin-top: 15px;
            }

            .hero-about h1 {
                font-size: 32px;
            }

            .about-section {
                padding: 40px 20px;
            }

            .story-container {
                grid-template-columns: 1fr;
            }

            footer {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
