:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    padding: 24px 0;
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.logo a {
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.3s;
}

.logo a:hover {
    color: var(--primary-dark);
}

.logo i {
    font-size: 28px;
}

.base-logo {
    margin-bottom: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.a-cta {
    font-size: 12px;
    text-decoration: none;
    line-height: 1;
    font-weight: 700;
}

.cta-button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    /* font-weight: 600; */
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

.secondary-button {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.secondary-button:hover {
    background-color: var(--primary);
    color: var(--white);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.back-button {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 2px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-button:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* ============= */

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.hero-buttons a {
    text-decoration: none;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
    font-size: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 16px;
}

.tab {
    padding: 12px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    position: relative;
}

.tab.active {
    color: var(--primary);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px 3px 0 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.screenshot-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.screenshot-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.screenshot-slide {
    min-width: 100%;
    position: relative;
}

.screenshot-slide img {
    width: 100%;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: var(--primary);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    pointer-events: none;
}

.slider-arrow {
    background-color: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
    box-shadow: var(--shadow);
}

.slider-arrow:hover {
    background-color: var(--white);
    transform: scale(1.1);
}

/* Pricing Section */
.pricing {
    padding: 80px 0 0 0;
}

.pricing-table {
    margin-bottom: 40px;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.pricing-table th {
    background-color: var(--primary);
    color: var(--white);
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 18px;
}

.pricing-table td {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr.featured {
    background-color: #f0f4ff;
}

.pricing-table .badge {
    background-color: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.pricing-table .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.pricing-table .price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

/* Download Buttons */
.download-all-button {
    text-align: center;
    margin: 40px 0;
}

.button-group {
    display: grid;
    grid-template-areas:
        "button1"
        "divider"
        "button2";
    justify-items: center;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.button-group .cta-button.large {
    grid-area: button1;
}

.button-group .divider-with-text {
    grid-area: divider;
}

.button-group .secondary-button.large {
    grid-area: button2;
}

.divider-with-text {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: #e5e7eb;
}

.divider-text {
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}

.cta-button.large,
.secondary-button.large {
    padding: 16px 32px;
    font-size: 18px;
    width: 100%;
}

.pricing-highlight {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

/* Download Section */
.download {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.download-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.download-text {
    flex: 1;
}

.download-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.download-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.download-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.download-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.download-option:hover {
    transform: translateY(-5px);
}

.download-icon {
    width: 50px;
    height: 50px;
    background-color: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.download-info {
    flex: 1;
}

.download-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.download-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.download-button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: var(--primary-dark);
}

/* About Section */
.about {
    padding: 80px 0;
    text-align: center;
    background-color: var(--bg-light);
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #a5b4fc;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--white);
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #a5b4fc;
}

.copyright {
    margin-top: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.footer-company {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.4;
    text-align: center;
}

.footer-company .company-name {
    font-weight: 600;
    color: #e5e7eb;
}

.footer-company .ft-company-address {
    margin-top: 0.15rem;
}

/* ======================== */
.lang-switcher-mobile {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 40px;
    }

    .hero-content,
    .download-content {
        gap: 40px;
    }

    .contact-grid {
        gap: 40px;
    }

    .lang-switcher-desktop {
        display: none;
    }

    .lang-switcher-mobile {
        display: block;
    }
}

@media (max-width: 840px) {
    .header-content {
        justify-content: flex-start;
        gap: 12px;
        flex-wrap: wrap;
    }

    .mobile-menu {
        display: block;
        order: 0;
    }

    .logo {
        order: 1;
        margin-right: auto;
    }

    .cta-button {
        order: 2;
        padding: 10px 14px;
    }

    .back-button {
        order: 2;
        padding: 2px 10px;
    }

    .lang-switcher {
        order: 3;
    }

    nav {
        display: none;
        width: 100%;
        margin-top: 24px;
        order: 4;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-buttons a:first-child {
        order: 1;
    }

    .hero-buttons a:last-child {
        order: 2;
    }

    .hero-buttons .cta-button,
    .hero-buttons .secondary-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 30px;
    }

    .tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .tab {
        padding: 8px 16px;
    }

    .slider-arrows {
        padding: 0 10px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .pricing-table {
        overflow-x: auto;
    }

    .pricing-table table {
        min-width: 600px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 16px 12px;
    }

    .download-content {
        flex-direction: column;
        text-align: center;
    }

    .download-options {
        align-items: center;
    }

    .download-option {
        width: 100%;
        max-width: 400px;
    }

    .button-group {
        gap: 12px;
        max-width: 300px;
    }

    .divider-with-text {
        gap: 12px;
    }

    .cta-button.large,
    .secondary-button.large {
        font-size: 16px;
        padding: 14px 24px;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 36px;
    }

    .tab-content.active {
        max-height: 600px;
    }

    .screenshot-slide-mobile img {
        height: 600px;
        object-fit: cover;
    }

    .screenshot-slide-tablet img {
        height: 500px;
        object-fit: cover;
    }

    .screenshot-slide-web img {
        height: 220px;
        object-fit: cover;
    }

    .contact-content {
        padding: 30px 0 !important;
    }

    .contact-grid {
        display: flex !important;
        flex-direction: column-reverse;
        /* grid-template-columns: 1fr;
        gap: 40px; */
    }

    .contact-form-container {
        padding: 32px 24px;
    }

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

@media (max-width: 640px) {}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 32px;
    }

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

    .feature-card {
        padding: 24px 16px;
    }

    .tabs {
        flex-direction: row;
        align-items: center;
    }

    .tab {
        /* width: 100%; */
        text-align: center;
    }

    .download-option {
        flex-direction: column;
        text-align: center;
    }

    .button-group {
        gap: 10px;
        max-width: 100%;
    }

    .slide-caption {
        padding: 6px;
        line-height: 1.2;
        font-size: 13px;
    }

    .cta-button.large,
    .secondary-button.large {
        font-size: 15px;
        padding: 12px 20px;
    }

    .divider-text {
        font-size: 13px;
    }

    .privacy-hero {
        padding: 40px 0 30px;
    }

    .privacy-hero h1 {
        font-size: 26px;
    }

    .privacy-content {
        padding: 40px 0;
    }

    .terms-hero {
        padding: 40px 0 30px;
    }

    .terms-hero h1 {
        font-size: 26px;
    }

    .terms-content {
        padding: 40px 0;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .contact-hero {
        padding: 60px 0 40px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-content {
        padding: 30px 0 !important;
    }

    .contact-card {
        padding: 24px;
    }

    .company-address {
        padding: 24px;
    }

    .contact-form-container {
        padding: 24px 20px;
    }
}

/* language-switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.language-switcher a {
    color: #9ca3af;
    text-decoration: none;
}

.language-switcher a.active {
    color: #f9fafb;
    font-weight: 600;
}

/* privacy */
/* Privacy Hero Section */
.privacy-hero {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
}

.privacy-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.last-updated {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 24px;
}

.privacy-hero p {
    max-width: 700px;
    margin: 0 auto;
}

/* Privacy Content */
.privacy-content {
    padding: 60px 0;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.privacy-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 16px;
    color: var(--text-dark);
}

.privacy-section p {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.privacy-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.privacy-section li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.highlight-box {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    border-left: 4px solid var(--primary);
}

.divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 32px 0;
}

.contact-info {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius);
    margin-top: 40px;
    text-align: center;
}

.contact-info p {
    margin-bottom: 16px;
    font-weight: 500;
}

.email-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.email-link:hover {
    text-decoration: underline;
}

/* ============ */

/* Language Switcher */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background-color: var(--bg-light, #ffffff);
    box-shadow: var(--shadow, 0 6px 18px rgba(15, 23, 42, 0.12));
    font-size: 0.875rem;
    line-height: 1;
}

.lang-switcher-icon {
    font-size: 0.9rem;
    color: var(--primary, #2563eb);
    margin-top: 2px;
}

.lang-switcher-divider {
    display: inline-block;
    width: 1px;
    background-color: #e5e7eb;
    margin-top: 3px;
}

.lang-switcher-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-switcher-select {
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: inherit;
    color: var(--text-dark, #111827);
    cursor: pointer;
    padding: 0 20px 0 4px;
    outline: none;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.lang-switcher-select-wrapper::after {
    content: "\f107";
    /* chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 4px;
    pointer-events: none;
    font-size: 0.7rem;
    color: var(--text-light, #6b7280);
}

.lang-switcher:hover {
    border-color: var(--primary, #2563eb);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18);
}

.lang-switcher-select:focus-visible {
    outline: none;
}

.lang-switcher-select option {
    padding: 6px 10px;
    font-size: 0.85rem;
    background-color: #0f172a;
    color: #f9fafb;
    border-radius: 4px !important;
}

.lang-switcher-select option:checked {
    background-color: #1d4ed8;
    color: #ffffff;
}

.lang-switcher-select option:hover {
    background-color: #1e293b;
}

/* ============ */

/* Terms Content */
.terms-hero {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
}

.terms-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.last-updated {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 24px;
}

.terms-content {
    padding: 60px 0;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.terms-section p {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.terms-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.terms-section li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 32px 0;
}

.email-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.email-link:hover {
    text-decoration: underline;
}

/* ============ */

/* Contact Hero Section */
.contact-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.contact-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background-color: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 24px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.contact-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.company-address {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.company-address h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-address h3 i {
    font-size: 22px;
}

.company-address p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.company-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.contact-form-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-form-container>p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--primary-dark);
}

.faq-section {
    margin-top: 80px;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.faq-item {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.form-status--success {
    color: #0a7e25;
}

.form-status--error {
    color: #c53030;
}

/* ============ */