/* Reset và Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Lato", sans-serif;
    line-height: 1.6;
    color: #0c0c0c;
    background-color: #ffffff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Container */
.container {
    max-width: 1342px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Buttons */
.btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: none;
    border-radius: 12px;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: none;
    flex-grow: 0;
}

.btn-small {
    padding: 4px 10px;
    gap: 8px;
    width: 109px;
    height: 32px;
    font-size: 16px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.btn-primary {
    background-color: #090047;
    color: #ffffff;
    border: 1px solid #090047;
}

.btn-primary:hover {
    background-color: #1a0a5e;
    border-color: #1a0a5e;
}

.btn-light {
    border: 1px solid rgba(12, 12, 12, 0.15);
    border-radius: 12px;
    color: #0c0c0c;
    background-color: transparent;
}

.btn-light:hover {
    background-color: #f8f8f8;
    border-color: #f8f8f8;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    gap: 8px;
    flex: none;
    flex-grow: 0;
    font-family: "Lato";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-alternate {
    background-color: #ffffff;
    color: #0c0c0c;
    border: 1px solid #ffffff;
}

.btn-alternate:hover {
    background-color: #f8f8f8;
    border-color: #f8f8f8;
}

.btn-link {
    background-color: transparent;
    color: #0c0c0c;
    padding: 0;
    border: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #090047;
}

.chevron-icon {
    width: 24px;
    height: 24px;
}

/* Header */
.header {
    background-color: #090047;
    height: 72px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 32px;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    width: 84px;
    height: 32px;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

/* Mobile Actions */
.mobile-actions {
    display: none;
    align-items: center;
    gap: 8px;
}

.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle .hamburger-icon {
    display: block;
    width: 24px;
    height: 24px;
}

.mobile-toggle .close-icon {
    display: none;
    width: 24px;
    height: 24px;
}

.mobile-toggle.active .hamburger-icon {
    display: none;
}

.mobile-toggle.active .close-icon {
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background-color: #090047;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Banner Section */
.hero-banner {
    height: 400px;
    position: relative;
    margin-top: 72px;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 300px;
        margin-top: 64px;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
}

/* Hero Content Section */
.hero-content-section {
    background-color: #4098b8;
    padding: 80px 0;
}

.hero-content {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 80px;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 20px;
    }
}

.hero-text {
    flex: 1;
}

.hero-heading {
    font-size: 72px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 40px;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }
}

.hero-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-description p {
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

@media (max-width: 768px) {
    .hero-actions {
        gap: 16px;
        align-items: center;
    }
}

/* About Section */
.about {
    padding: 112px 0;
    background-color: #ffffff;
}

.about .about-content {
    display: flex;
    justify-content: stretch;
    align-items: center;
    gap: 80px;
}

@media (max-width: 768px) {
    .about .about-content {
        flex-direction: column;
        gap: 48px;
    }
}

.about .about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about .about-image {
    flex: 1;
}

.about .about-image img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .about .about-image img {
        height: 348px;
        border-radius: 16px;
    }
}

/* Section Headings - Base styles for sections without specific styling */
.about .section-heading,
.process .section-heading,
.logos .section-heading,
.cta .section-heading,
.contact .section-heading {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.2;
    color: #0c0c0c;
}

@media (max-width: 768px) {

    .about .section-heading,
    .process .section-heading,
    .logos .section-heading,
    .cta .section-heading,
    .contact .section-heading {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }
}

.about .section-text,
.process .section-text,
.logos .section-text,
.cta .section-text,
.contact .section-text {
    font-size: 18px;
    line-height: 1.5;
    color: #0c0c0c;
}

@media (max-width: 768px) {

    .about .section-text,
    .process .section-text,
    .logos .section-text,
    .cta .section-text,
    .contact .section-text {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* Features Section */
.features {
    padding: 112px 0;
    background-color: #090047;
    color: #ffffff;
}

@media (max-width: 768px) {
    .features {
        padding: 64px 0;
        background-color: #090047;
        color: #ffffff;
    }
}

.features .section-header {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 16px;
    margin-bottom: 80px;
    max-width: 768px;
}

.features .tagline-wrapper {
    display: flex;
    align-items: center;
}

.features .tagline {
    font-family: Lato;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    color: #ffffff;
}

.features .section-content {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 24px;
}

.features .section-heading {
    font-family: Urbanist;
    font-weight: 500;
    font-size: 52px;
    line-height: 1.200000029343825em;
    letter-spacing: -0.01em;
    color: #ffffff;
}

@media (max-width: 768px) {
    .features .section-heading {
        font-size: 36px;
        font-weight: 500;
    }
}

.features .section-text {
    font-family: Lato;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5em;
    color: #ffffff;
}

.features .features-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    align-self: stretch;
    gap: 48px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .features .features-grid {
        flex-direction: column;
        gap: 48px;
        margin-bottom: 48px;
    }
}

.features .feature-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: calc((100% / 3) - 48px *2 / 3);
}

@media (max-width: 768px) {
    .features .feature-card {
        gap: 20px;
    }
}

.features .feature-icon {
    width: 48px;
    height: 48px;
}

.features .feature-icon img {
    width: 100%;
    height: 100%;
}

.features .feature-title {
    font-family: Urbanist;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.2999999788072374em;
    letter-spacing: -0.01em;
    color: #ffffff;
}

@media (max-width: 768px) {
    .features .feature-title {
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: -0.01em;
        color: #ffffff;
    }
}

.features .feature-text {
    font-family: Lato;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #ffffff;
}

.features .section-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 768px) {
    .features .section-actions {
        gap: 24px;
        align-items: center;
    }
}

/* Process Section */
.process {
    padding: 112px 0;
    background-color: #ffffff;
}

.process .process-heading {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 80px;
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #0c0c0c;
}

.process .process-grid {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: stretch;
    max-width: 100%;
}

.process .process-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.process .process-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    width: 100%;
}

.process .process-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process .process-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.process .process-title {
    font-family: "Urbanist", sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #0c0c0c;
    text-align: center;
    margin-bottom: 24px;
}

.process .process-description {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #0c0c0c;
    text-align: center;
}

.process .process-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

/* Logo Section */
.logos {
    padding: 80px 0;
    background-color: #dadada;
}

.logos .logos-content {
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: space-between;
}

.logos .logos-heading {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: #0c0c0c;
    max-width: 320px;
    flex-shrink: 0;
}

.logos .logos-grid {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    flex: 1;
}

.logos .logo-item {
    width: 140px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logos .logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* CTA Section */
.cta {
    padding: 112px 0;
    background-color: #4098b8;
    color: #ffffff;
}

@media (max-width: 768px) {
    .cta {
        padding: 64px 20px;
        background-color: #4098b8;
    }
}

.cta .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

@media (max-width: 768px) {
    .cta .cta-content {
        text-align: center;
        gap: 24px;
    }
}

.cta .cta-heading {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
}

.cta .cta-description {
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
}

.cta .cta-actions {
    display: flex;
    gap: 16px;
}

/* Contact Section */
.contact {
    padding: 112px 0;
    background-color: #ffffff;
}

.contact .contact-grid {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 48px;
}

@media (max-width: 768px) {
    .contact .contact-grid {
        flex-direction: column;
        gap: 48px;
    }

    .contact {
        padding: 64px 0;
    }
}

.contact .contact-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 768px) {
    .contact .contact-item {
        gap: 24px;
    }
}

.contact .contact-icon {
    width: 48px;
    height: 48px;
}

.contact .contact-icon img {
    width: 100%;
    height: 100%;
}

.contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact .contact-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    color: #0c0c0c;
}

@media (max-width: 768px) {
    .contact .contact-title {
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: -0.01em;
    }
}

.contact .contact-text {
    font-size: 16px;
    line-height: 1.5;
    color: #0c0c0c;
}

.contact-link {
    font-size: 16px;
    line-height: 1.5;
    color: #0c0c0c;
    text-decoration: underline;
}

.contact-link:hover {
    color: #090047;
}

/* Footer */
.footer {
    background-color: #090047;
    color: #ffffff;
    padding: 80px 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 48px 0;
        background-color: #090047;
        color: #ffffff;
    }
}

.footer .footer-content {
    display: flex;
    gap: 128px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .footer .footer-content {
        flex-direction: column;
        gap: 48px;
        margin-bottom: 48px;
    }
}

.footer .footer-links {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 40px;
    flex: 1;
}

@media (max-width: 768px) {
    .footer .footer-links {
        flex-direction: column;
        gap: 40px;
    }
}

.footer .footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

@media (max-width: 768px) {
    .footer .footer-column {
        gap: 12px;
    }
}

.footer .footer-logo img {
    width: 84px;
    height: 32px;
}

.footer .footer-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
}

.footer .footer-links-list {
    display: flex;
    flex-direction: column;
}

.footer .footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    padding: 8px 0;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .footer .footer-link {
        font-size: 14px;
        line-height: 1.5;
        color: #ffffff;
        padding: 8px 0;
    }
}

.footer .footer-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer .newsletter {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 400px;
}

@media (max-width: 768px) {
    .footer .newsletter {
        width: 100%;
    }
}

.footer .newsletter-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 768px) {
    .footer .newsletter-header {
        gap: 12px;
    }
}

.footer .newsletter-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
}

.footer .newsletter-text {
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer .newsletter-text {
        font-size: 14px;
        line-height: 1.5;
        color: #ffffff;
    }
}

.footer .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 768px) {
    .footer .newsletter-form {
        gap: 16px;
    }
}

.footer .form-group {
    display: flex;
    gap: 16px;
}

@media (max-width: 768px) {
    .footer .form-group {
        flex-direction: column;
        gap: 16px;
    }
}

.footer .newsletter-input {
    flex: 1;
    padding: 8px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}

.footer .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer .newsletter-input:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.footer .newsletter-disclaimer {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credits {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer .credits-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer .credits-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
}

.footer .credits-links {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.footer .copyright {
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
}

.footer .credits-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer .credits-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer .social-links {
    display: flex;
    gap: 12px;
}

@media (max-width: 768px) {
    .footer .social-links {
        gap: 12px;
    }
}

.footer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.footer .social-link:hover {
    opacity: 0.8;
}

.footer .social-link img {
    width: 100%;
    height: 100%;
}

.footer .footer-nav {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
}

.footer .footer-nav a {
    color: #ffffff;
    text-decoration: underline;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer .footer-nav a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.text-link {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.text-link:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(4px);
}

.text-link:hover .chevron-icon {
    transform: translateX(4px);
    transition: transform 0.3s ease;
}

.text-link .chevron-icon {
    transition: transform 0.3s ease;
}

.text-link-dark {
    color: #0c0c0c;
}

.text-link-dark:hover {
    color: #090047;
}

@media (max-width: 768px) {

    /* Header Mobile Layout */
    .header {
        height: 64px;
    }

    .mobile-menu {
        top: 64px;
    }

    .hero-banner {
        margin-top: 64px;
    }

    .header-content {
        gap: 16px;
    }

    .nav-links {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-actions {
        display: flex;
    }

    .logo {
        flex: 1;
    }

    /* Other Mobile Adjustments */
    .hero-banner {
        height: 300px;
    }

    .process .process-grid {
        gap: 32px;
        flex-direction: column;
    }

    .logos .logos-content {
        gap: 32px;
        flex-direction: column;
        align-items: start;
    }

    .logos .logos-grid {
        justify-content: flex-start;
    }

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .footer .credits-content {
        flex-direction: column-reverse;
        gap: 32px;
        text-align: center;
        padding: 0 0 16px;
        align-items: flex-start;
    }

    .footer .credits-links {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .social-links {
        gap: 12px;
    }

    .footer .footer-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer .social-links {
        order: 2;
    }

    .footer .credits-links {
        order: 1;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 32px;
    }

    .feature-title {
        font-size: 28px;
    }

    .process .process-title {
        font-size: 20px;
    }

    .logos .logo-item {
        width: calc(50% - 16px);
    }

    .process {
        padding: 48px 0;
    }

    .process .process-heading {
        font-size: 32px;
        margin-bottom: 48px;
    }

    .logos {
        padding: 48px 20px;
    }

    .logos .logos-heading {
        font-size: 16px;
    }

    .cta .cta-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .cta {
        padding: 48px 0;
    }

    .contact {
        padding: 48px 0;
    }

    .contact-title {
        font-size: 28px;
    }

    .cta-actions {
        gap: 12px;
    }

    .form-group {
        flex-direction: column;
        gap: 12px;
    }
}

/* Products Page Styles */
.products-hero {
    background-color: #4098b8;
    padding: 112px 0;
    color: #ffffff;
}

.products-hero-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 768px;
    margin: 0 auto 80px;
}

.products-hero-heading {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 72px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-align: center;
}

.products-hero-description {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

.products-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.products-hero-image {
    flex: 1;
}

.products-hero-image img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: 16px;
}

/* Product Sections */
.product-section {
    padding: 112px 0;
    background-color: #ffffff;
}

.product-content {
    display: flex;
    align-items: stretch;
    gap: 80px;
    max-width: 1342px;
    margin: 0 auto;
}

.product-content-reverse {
    flex-direction: row-reverse;
}

.product-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-tagline {
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #0c0c0c;
}

.product-heading {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #0c0c0c;
}

.product-description {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #0c0c0c;
}

/* Product Features */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 8px 0;
}

.product-feature {
    width: calc(50% - 12px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #0c0c0c;
}

.feature-text {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #0c0c0c;
}

/* Product Features List */
.product-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 0;
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon-small {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.feature-icon-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Actions */
.product-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.product-image {
    flex: 1;
}

.product-image img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 16px;
}

/* Products CTA */
.products-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("images/section-image.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 112px 64px;
    color: #ffffff;
}

.products-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 1342px;
    margin: 0 auto;
    text-align: center;
}

.products-cta-heading {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-align: center;
    margin-bottom: 24px;
}

.products-cta-description {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

.products-cta-actions {
    display: flex;
    gap: 16px;
}

/* Active Navigation State */
.nav-link.active,
.mobile-nav-link.active {
    color: #4098b8;
    font-weight: 600;
}

.contact-header-wrapepr {
    margin-bottom: 80px;
}

/* Mobile Responsiveness for Products Page */
@media (max-width: 768px) {
    .products-hero {
        padding: 120px 0 64px 0;
    }

    .products-hero-content {
        flex-direction: column;
        gap: 48px;
    }

    .products-hero-heading {
        font-size: 40px;
    }

    .products-hero-description {
        font-size: 16px;
    }

    .products-hero-actions {
        gap: 12px;
    }

    .products-hero-image img {
        height: 188px;
    }

    .product-section {
        padding: 64px 0;
    }

    .product-content {
        flex-direction: column;
        gap: 48px;
    }

    .product-content-reverse {
        flex-direction: column;
    }

    .product-heading {
        font-size: 36px;
    }

    .product-description {
        font-size: 16px;
    }

    .product-image img {
        height: 348px;
    }

    .products-cta {
        padding: 64px 0;
    }

    .products-cta-heading {
        font-size: 36px;
    }

    .products-cta-actions {
        gap: 12px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("images/section-image.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 112px 64px;
    color: #ffffff;
    text-align: center;
}

.contact-hero-content {
    max-width: 1342px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-hero-heading {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 72px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-align: center;
}

.contact-hero-description {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 112px 0;
    background-color: #ffffff;
}

.contact-content {
    display: flex;
    align-items: stretch;
    gap: 80px;
    max-width: 1342px;
    margin: 0 auto;
}

.contact-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.contact-tagline {
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #0c0c0c;
}

.contact-heading {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #0c0c0c;
}

.contact-description {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #0c0c0c;
}

/* Contact Info Grid */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info-title {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #0c0c0c;
}

.contact-info-text {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #0c0c0c;
}

.contact-info-link {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #0c0c0c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: #4098b8;
}

.contact-actions {
    margin-top: 16px;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: 516px;
    object-fit: cover;
    border-radius: 16px;
}

/* Contact CTA */
.contact-cta {
    padding: 112px 64px;
    background-color: #ffffff;
}

.contact-cta-content {
    max-width: 1342px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: stretch;
}

.contact-cta-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-cta-heading {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #0c0c0c;
    max-width: 600px;
}

.contact-cta-description {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #0c0c0c;
}

.contact-cta-actions {
    display: flex;
    gap: 16px;
}

.legal-content{
    padding: 150px 0 120px 0;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-wrapper h1 {
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #090047;
    margin-bottom: 16px;
}

.legal-wrapper .last-updated {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
    margin-bottom: 32px;
}

.legal-wrapper h2 {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #090047;
    margin: 32px 0 16px 0;
}

.legal-wrapper p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #0c0c0c;
    margin-bottom: 16px;
}

.legal-wrapper a {
    color: #090047;
    text-decoration: underline;
}

.legal-wrapper a:hover {
    color: #1a0a5e;
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 64px 0;
    }

    .legal-content{
        padding: 120px 0 80px 0;
    }

    .legal-wrapper h1 {
        font-size: 36px;
    }

    .legal-wrapper h2 {
        font-size: 20px;
    }

    .legal-wrapper p {
        font-size: 15px;
    }

    .contact-hero-heading {
        font-size: 40px;
    }

    .contact-hero-description {
        font-size: 16px;
    }

    .contact-section {
        padding: 64px 0;
    }

    .contact-content {
        flex-direction: column;
        gap: 48px;
    }

    .contact-info-item {
        flex-direction: column;
    }

    .contact-heading {
        font-size: 36px;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-info-grid {
        gap: 32px;
    }

    .contact-image img {
        height: 400px;
    }

    .contact-cta {
        padding: 64px 0;
    }

    .contact-cta-heading {
        font-size: 36px;
    }

    .contact-cta-content {
        flex-direction: column;
        gap: 48px;
    }

    .contact-cta-actions {
        gap: 12px;
    }
}