* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary: #0a192f;
            --secondary: #172a45;
            --accent: #64ffda;
            --text: #ccd6f6;
            --text-alt: #8892b0;
            --white: #ffffff;
        }
        
        body {
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--text);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--accent);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--white);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Page Header */
        .page-header {
            margin-top: 70px;
            padding: 60px 0;
            background-color: var(--secondary);
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 42px;
            margin-bottom: 15px;
            color: var(--white);
        }
        
        .page-header p {
            font-size: 18px;
            color: var(--text-alt);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 36px;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            color: var(--white);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--text-alt);
        }
        
        .about-image {
            flex: 1;
            position: relative;
            height: 400px;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Mission Section */
        .mission-section {
            background-color: var(--secondary);
            padding: 80px 0;
        }
        
        .mission-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .mission-text {
            flex: 1;
        }
        
        .mission-text h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .mission-text p {
            margin-bottom: 20px;
            color: var(--text-alt);
        }
        
        .mission-values {
            margin-top: 30px;
        }
        
        .mission-values h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .value-item {
            background-color: var(--primary);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
        }
        
        .value-icon {
            font-size: 36px;
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .value-item h4 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--white);
        }
        
        .value-item p {
            color: var(--text-alt);
            font-size: 14px;
        }
        
        .mission-image {
            flex: 1;
            position: relative;
            height: 400px;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .mission-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .mission-image:hover img {
            transform: scale(1.05);
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 0;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            text-align: center;
            background-color: var(--secondary);
            padding: 30px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
        }
        
        .member-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 3px solid var(--accent);
        }
        
        .member-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .member-name {
            font-size: 22px;
            margin-bottom: 5px;
            color: var(--white);
        }
        
        .member-position {
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .member-bio {
            color: var(--text-alt);
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--primary);
            color: var(--text);
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: var(--accent);
            color: var(--primary);
        }
        
        /* Timeline Section */
        .timeline-section {
            background-color: var(--secondary);
            padding: 80px 0;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--accent);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -17px;
            background-color: var(--white);
            border: 4px solid var(--accent);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .left {
            left: 0;
        }
        
        .right {
            left: 50%;
        }
        
        .left::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            right: 30px;
            border: medium solid var(--secondary);
            border-width: 10px 0 10px 10px;
            border-color: transparent transparent transparent var(--secondary);
        }
        
        .right::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            left: 30px;
            border: medium solid var(--secondary);
            border-width: 10px 10px 10px 0;
            border-color: transparent var(--secondary) transparent transparent;
        }
        
        .right::after {
            left: -16px;
        }
        
        .timeline-content {
            padding: 20px 30px;
            background-color: var(--secondary);
            position: relative;
            border-radius: 6px;
        }
        
        .timeline-date {
            font-weight: bold;
            color: var(--accent);
            margin-bottom: 10px;
        }
        
        .timeline-title {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--white);
        }
        
        .timeline-description {
            color: var(--text-alt);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 60px 0;
            text-align: center;
        }
        
        .cta-content h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .cta-content p {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--text-alt);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: var(--accent);
            color: var(--primary);
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--text-alt);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--accent);
        }
        
        .footer-contact p {
            color: var(--text-alt);
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-alt);
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: var(--primary);
            padding: 20px 0;
            text-align: center;
            color: var(--text-alt);
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .about-content, .mission-content {
                flex-direction: column;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item::before {
                left: 60px;
                border: medium solid var(--secondary);
                border-width: 10px 10px 10px 0;
                border-color: transparent var(--secondary) transparent transparent;
            }
            
            .left::after, .right::after {
                left: 15px;
            }
            
            .right {
                left: 0%;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }
            
            nav ul.show {
                transform: translateX(0);
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .page-header h1 {
                font-size: 32px;
            }
            
            .section-title {
                font-size: 28px;
            }
        }

