        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
            min-height: 100vh;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(40, 184, 255, 0.03) 0%, rgba(30, 168, 230, 0.08) 100%);
            padding: 100px 0 80px;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2328b8ff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%2328b8ff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .hero-container {
            max-width: none;
            margin: 0;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 40px;
            margin-bottom: 60px;
            max-width: 1200px;
        }

        .logo {
            width: 120px;
            height: 120px;
            filter: drop-shadow(0 8px 16px rgba(40, 184, 255, 0.3));
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-top: 8px;
            /* Align with the company title */
            border-radius: 16px;
        }

        .logo:hover {
            transform: scale(1.05) rotate(2deg);
        }

        .hero-text {
            text-align: left;
            max-width: 600px;
        }

        .hero-title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            background: linear-gradient(135deg, #28b8ff 0%, #1ea8e6 50%, #0d7bb8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .hero-subtitle {
            font-size: clamp(18px, 3vw, 24px);
            color: #666;
            font-weight: 300;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .hero-description {
            font-size: 18px;
            color: #555;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        .cta-primary,
        .cta-secondary {
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .cta-primary {
            background: linear-gradient(135deg, #28b8ff 0%, #1ea8e6 100%);
            color: white;
            box-shadow: 0 4px 16px rgba(40, 184, 255, 0.4);
        }

        .cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(40, 184, 255, 0.5);
        }

        .cta-secondary {
            background: white;
            color: #28b8ff;
            border: 2px solid #28b8ff;
        }

        .cta-secondary:hover {
            background: #28b8ff;
            color: white;
            transform: translateY(-2px);
        }

        /* Research Areas Section */
        .research-section {
            padding: 80px 0;
            background: white;
        }

        /* Section alignment variations */
        .section-center {
            text-align: center;
        }

        .section-left {
            text-align: left;
        }

        .section-left .section-title,
        .section-left .section-subtitle {
            text-align: left;
            margin-left: 0;
            margin-right: auto;
        }

        .section-right {
            text-align: right;
        }

        .section-right .section-title,
        .section-right .section-subtitle {
            text-align: right;
            margin-left: auto;
            margin-right: 0;
        }

        /* Content containers for different alignments */
        .content-left {
            max-width: 1200px;
            margin-left: 0;
            margin-right: auto;
            padding-left: 40px;
            padding-right: 20px;
        }

        .content-right {
            max-width: 1200px;
            margin-left: auto;
            margin-right: 0;
            padding-left: 20px;
            padding-right: 40px;
        }

        .content-center {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .research-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .research-card {
            background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(40, 184, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .research-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #28b8ff 0%, #1ea8e6 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .research-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(40, 184, 255, 0.15);
        }

        .research-card:hover::before {
            transform: scaleX(1);
        }

        .research-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #28b8ff 0%, #1ea8e6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 16px;
            font-weight: 700;
            color: white;
            box-shadow: 0 4px 16px rgba(40, 184, 255, 0.3);
            letter-spacing: 0.5px;
        }

        .research-title {
            font-size: 22px;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
        }

        .research-description {
            color: #666;
            line-height: 1.6;
            font-size: 15px;
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
        }

        .about-content.reverse {
            direction: rtl;
        }

        .about-content.reverse>* {
            direction: ltr;
        }

        .about-text h2 {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 700;
            color: #333;
            margin-bottom: 24px;
        }

        .about-text p {
            font-size: 16px;
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: #28b8ff;
            display: block;
        }

        .stat-label {
            font-size: 14px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            max-width: 1200px;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            height: 100%;
        }

        .contact-card {
            background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
            border-radius: 16px;
            padding: 40px 32px;
            box-shadow: 0 8px 32px rgba(40, 184, 255, 0.1);
            border: 1px solid rgba(40, 184, 255, 0.1);
            max-width: 400px;
            width: 100%;
            height: fit-content;
        }

        .contact-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
            background: linear-gradient(135deg, #28b8ff 0%, #1ea8e6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            padding: 16px;
            border-radius: 12px;
            transition: background 0.2s ease;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-item:hover {
            background: rgba(40, 184, 255, 0.05);
        }

        .contact-icon {
            font-size: 18px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #28b8ff 0%, #1ea8e6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(40, 184, 255, 0.3);
            color: white;
        }

        .contact-details {
            flex: 1;
        }

        .contact-details strong {
            font-size: 16px;
            color: #333;
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
        }

        .contact-details p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin: 0;
        }

        .contact-text {
            max-width: 600px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 100%;
        }

        .contact-text h2 {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 700;
            color: #333;
            margin-bottom: 24px;
        }

        .contact-text p {
            font-size: 16px;
            color: #555;
            line-height: 1.7;
            margin: 0;
        }

        .contact-text .cta-buttons {
            margin-top: 0;
            padding-top: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .hero-container {
                padding: 0 20px;
            }

            .hero-content {
                flex-direction: column;
                gap: 24px;
                align-items: flex-start;
            }

            .hero-text {
                text-align: left;
            }

            .logo {
                width: 100px;
                height: 100px;
                margin-top: 0;
                /* Reset margin on mobile */
                border-radius: 12px;
            }

            .cta-buttons {
                justify-content: flex-start;
            }

            /* Reset all section alignments to center on mobile */
            .section-left,
            .section-right,
            .section-center {
                text-align: center;
            }

            .section-left .section-title,
            .section-left .section-subtitle,
            .section-right .section-title,
            .section-right .section-subtitle {
                text-align: center;
                margin: 0 auto;
            }

            .content-left,
            .content-right,
            .content-center {
                max-width: none;
                margin: 0 auto;
                padding: 0 20px;
            }

            .about-content,
            .about-content.reverse,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
                direction: ltr;
                max-width: none;
            }

            .contact-info {
                order: 2;
            }

            .contact-text {
                order: 1;
            }

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

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

            .contact-card {
                max-width: none;
                padding: 32px 24px;
            }

            .contact-item {
                padding: 12px;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 80px 0 60px;
            }

            .container {
                padding: 0 16px;
            }

            .hero-container {
                padding: 0 16px;
            }

            .cta-primary,
            .cta-secondary {
                padding: 12px 20px;
                font-size: 14px;
            }

            .contact-card {
                padding: 24px 20px;
            }

            .contact-item {
                gap: 12px;
                padding: 8px;
            }

            .contact-icon {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }
        }