﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    color: #1a1a1a;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background: #fff;
    border-bottom: 1.5px solid #F0D0C8;
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #E8401C, #FF6B35);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #E8401C;
    text-decoration: none;
}

    .nav-logo-text span {
        color: #FF6B35;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-register {
    padding: 9px 22px;
    border: 2px solid #E8401C;
    background: transparent;
    color: #E8401C !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

    .btn-register:hover {
        background: #FFF5F2;
        color: #E8401C !important;
    }

.btn-login {
    padding: 9px 22px;
    background: #E8401C;
    color: #fff !important;
    border: 2px solid #E8401C;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

    .btn-login:hover {
        background: #C0321A;
        border-color: #C0321A;
        color: #fff !important;
    }

/* Hero Section */
.hero {
    /*background: linear-gradient(135deg, #ff8c5a 0%, #ffb38a 50%, #ffd4b8 100%);*/
    /*background: #ff6b35bd;*/
    background: #eb5037;
    padding: 80px 40px 60px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 18px;
}

    .hero h1 span {
        color: rgba(255, 255, 255, 0.88);
    }

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    padding: 14px 32px;
    background: #ffffff;
    color: #E8401C !important;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}

    .cta-primary:hover {
        background: #1a1a1a;
        color: #fff !important;
    }

.cta-secondary {
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

    .cta-secondary:hover {
        background: rgba(255, 255, 255, 0.18);
    }

/* Features Section */
.features {
    padding: 60px 40px;
    background: #FFF5F2;
}

    .features h2 {
        text-align: center;
        font-size: 28px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 40px;
    }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.pop-card {
    background: #ffffff;
    border: 1.5px solid #F0D0C8;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .pop-card:hover {
        border-color: #E8401C;
        box-shadow: 0 4px 16px rgba(232, 64, 28, 0.12);
    }

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.f1 {
    background: #FDECEA;
}

.f2 {
    background: #FFE8DF;
}

.f3 {
    background: #FFF0EB;
}

.f4 {
    background: #FDECEA;
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: #6B6B6B;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background: #E8401C;
    padding: 40px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 4px;
}

/* Footer */
footer {
    background: #1A1A1A;
    color: #aaa;
    text-align: center;
    padding: 24px;
    font-size: 13px;
    margin-top: auto;
}

    footer span {
        color: #FF6B35;
        font-weight: 600;
    }

/* Responsive */
@media (max-width: 700px) {
    nav {
        flex-direction: column;
        gap: 12px;
        padding: 14px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero {
        padding: 40px 20px;
    }

    .features {
        padding: 40px 20px;
    }

    .stats {
        gap: 30px;
        padding: 30px 20px;
    }

    .stat-num {
        font-size: 28px;
    }
}

/* Form Card */
.form-card {
    max-width: 480px;
    margin: 50px auto;
    padding: 35px 30px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #F0D0C8;
    box-shadow: 0 10px 30px rgba(232, 64, 28, 0.08);
}

    .form-card h2 {
        text-align: center;
        color: #1a1a1a;
        margin-bottom: 10px;
    }

    .form-card hr {
        margin-bottom: 20px;
        border: 0;
        height: 1px;
        background: #F0D0C8;
    }

    .form-card label {
        font-size: 14px;
        font-weight: 600;
        margin-top: 12px;
        display: block;
        color: #1a1a1a;
    }

.card-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #E8401C;
}

/* Input fields */
.input-field {
    width: 100%;
    padding: 14px;
    border: 1px solid #F0D0C8;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s ease;
}

    .input-field:focus {
        border-color: #E8401C;
        box-shadow: 0 0 0 2px rgba(232, 64, 28, 0.15);
        outline: none;
    }

/* Button */
.btn-primary {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: none;
    border-radius: 25px;
    background: #E8401C;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-primary:hover {
        background: #C0321A;
    }

/* Login text */
.login-text {
    text-align: center;
    margin-top: 15px;
    color: #6c757d;
}

    .login-text a {
        color: #E8401C;
        font-weight: bold;
        text-decoration: none;
    }

        .login-text a:hover {
            color: #C0321A;
            text-decoration: underline;
        }

i {
    color: #E8401C;
}

.error-text {
    color: #e53e3e;
    font-size: 12.5px;
    font-weight: 500;
}

.inputForm {
    position: relative;
}

.btn-main {
    width: 100%;
    padding: 12px;
    background: #E8401C;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-main:hover {
        background: #E8401C;
    }

.fg {
    margin-bottom: 20px;
}

    .fg input {
        width: 100%;
        padding: 12px;
        border-radius: 30px;
        border: 1px solid #F0D0C8;
        transition: border-color 0.3s;
    }

        .fg input:focus {
            border-color: #E8401C;
            outline: none;
            box-shadow: 0 0 0 2px rgba(232, 64, 28, 0.15);
        }

.legal-hero {
    background: linear-gradient(135deg, #E8401C 0%, #C0321A 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

    .legal-hero h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .legal-hero p {
        font-size: 16px;
        opacity: 0.95;
        text-align: center !important;
    }

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 40px;
}

    .legal-section h2 {
        font-size: 24px;
        font-weight: 700;
        color: #C0321A;
        margin-bottom: 20px;
        border-bottom: 2px solid #F0D0C8;
        padding-bottom: 10px;
    }

    .legal-section h3 {
        font-size: 18px;
        font-weight: 600;
        color: #E8401C;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .legal-section p {
        font-size: 15px;
        color: #555;
        margin-bottom: 15px;
    }

.legal-list {
    margin: 15px 0;
    padding-left: 25px;
}

    .legal-list li {
        margin-bottom: 10px;
        color: #555;
        font-size: 15px;
    }

        .legal-list li strong {
            color: #333;
        }

/* Shared callout box (base) — used for both warning-box & highlight-box */
.legal-box {
    background: #FFF5F2;
    border-left: 4px solid #E8401C;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

    .legal-box p {
        margin: 0;
    }

/* Terms-specific: bold text inside box */
.warning-box p {
    font-weight: 500;
}

/* Table of Contents (shared base) */
.table-of-contents {
    background: #FFF5F2;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

    .table-of-contents h3 {
        margin-top: 0;
        color: #C0321A;
    }

    .table-of-contents ul {
        list-style: none;
        padding: 0;
    }

    .table-of-contents li {
        margin-bottom: 8px;
    }

    .table-of-contents a {
        color: #E8401C;
        text-decoration: none;
        transition: color 0.3s;
    }

        .table-of-contents a:hover {
            color: #C0321A;
            text-decoration: underline;
        }

/* Terms page only: 2-column TOC layout */
.terms-page .table-of-contents ul {
    columns: 2;
    column-gap: 30px;
}

/* Privacy page only: contact box at bottom */
.contact-info {
    background: linear-gradient(135deg, #E8401C 0%, #C0321A 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

    .contact-info h3 {
        color: white;
        margin-top: 0;
    }

    .contact-info p {
        color: rgba(255, 255, 255, 0.9);
    }

    .contact-info a {
        color: white;
        text-decoration: underline;
        font-weight: 600;
    }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 32px;
    }

    .legal-content {
        padding: 25px;
    }

    .legal-section h2 {
        font-size: 20px;
    }

    .legal-section h3 {
        font-size: 16px;
    }

    .legal-section p {
        font-size: 14px;
    }

    .terms-page .table-of-contents ul {
        columns: 1;
    }
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-form-section {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

    .contact-form-section h2 {
        font-size: 28px;
        font-weight: 700;
        color: #C0321A;
        margin-bottom: 25px;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        font-size: 14px;
        border: 1.5px solid #E8D0C8;
        border-radius: 8px;
        font-family: 'Segoe UI', sans-serif;
        transition: border-color 0.3s;
        box-sizing: border-box;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #E8401C;
            box-shadow: 0 0 0 3px rgba(232, 64, 28, 0.1);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #E8401C;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

    .submit-btn:hover {
        background: #C0321A;
    }

    .submit-btn:active {
        transform: scale(0.98);
    }

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: #FFF5F2;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #E8401C;
    transition: transform 0.3s;
}

    .info-card:hover {
        transform: translateX(5px);
    }

.info-card-icon {
    font-size: 32px;
    color: #E8401C;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #C0321A;
    margin: 0 0 10px 0;
}

.info-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.info-card a {
    color: #E8401C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

    .info-card a:hover {
        color: #C0321A;
        text-decoration: underline;
    }

.faq-section {
    max-width: 1000px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid #F0D0C8;
}

    .faq-section h2 {
        font-size: 32px;
        font-weight: 700;
        color: #C0321A;
        margin-bottom: 30px;
        text-align: center;
    }

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    background: #FFF5F2;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    user-select: none;
}

    .faq-question:hover {
        background: #FFE8DD;
    }

    .faq-question h3 {
        font-size: 16px;
        font-weight: 600;
        color: #C0321A;
        margin: 0;
        flex: 1;
    }

.faq-toggle {
    font-size: 20px;
    color: #E8401C;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-section {
        padding: 25px;
    }

        .contact-form-section h2 {
            font-size: 22px;
        }

    .faq-section h2 {
        font-size: 24px;
    }
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.services-hero {
    background: linear-gradient(135deg, #E8401C 0%, #C0321A 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

    .services-hero h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .services-hero p {
        font-size: 18px;
        opacity: 0.95;
        max-width: 700px;
        margin: 0 auto !important;
    }


.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    border-bottom: 1px solid #F0D0C8;
}

    .services-section:last-of-type {
        border-bottom: none;
    }

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #C0321A;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .section-title i {
        color: #E8401C;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #E8401C;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(232, 64, 28, 0.15);
    }

.service-card-header {
    background: #FFF5F2;
    padding: 30px 25px;
    text-align: center;
}

.service-icon {
    font-size: 50px;
    color: #E8401C;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #C0321A;
    margin: 0;
}

.service-card-body {
    padding: 25px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 20px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .feature-list li {
        padding: 8px 0;
        font-size: 14px;
        color: #666;
        padding-left: 25px;
        position: relative;
    }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #E8401C;
            font-weight: bold;
            font-size: 16px;
        }

.pricing-toggle {
    text-align: center;
    margin-bottom: 40px;
}

.toggle-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 20px;
    margin: 0 5px;
    color: #999;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

    .toggle-btn.active {
        color: #E8401C;
    }

        .toggle-btn.active::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            right: 0;
            height: 3px;
            background: #E8401C;
            border-radius: 2px;
        }

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    overflow-x: auto;
}

    .comparison-table th,
    .comparison-table td {
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid #F0D0C8;
        font-size: 15px;
    }

    .comparison-table th {
        background: #FFF5F2;
        font-weight: 600;
        color: #C0321A;
    }

    .comparison-table tr:hover {
        background: #FFF9F7;
    }

.check-icon {
    color: #E8401C;
    font-weight: bold;
    font-size: 18px;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.integration-item {
    background: #FFF5F2;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 28px;
    transition: all 0.3s;
    cursor: pointer;
}

    .integration-item:hover {
        background: #E8401C;
        color: white;
        transform: scale(1.05);
    }

.integration-item-name {
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
    color: #666;
}

.integration-item:hover .integration-item-name {
    color: white;
}

.cta-box {
    background: linear-gradient(135deg, #E8401C 0%, #C0321A 100%);
    color: white;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

    .cta-box h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .cta-box p {
        font-size: 16px;
        margin-bottom: 25px;
        opacity: 0.95;
    }

@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 30px 20px;
    }

        .cta-box h3 {
            font-size: 22px;
        }

    .comparison-table {
        font-size: 13px;
    }

        .comparison-table th,
        .comparison-table td {
            padding: 10px;
        }
}

.section-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: #FFF5F2;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #E8401C;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(232, 64, 28, 0.2);
    }

    .feature-card h3 {
        font-size: 20px;
        font-weight: 600;
        color: #C0321A;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
        margin: 0;
    }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 25px;
    transition: box-shadow 0.3s;
}

    .team-member:hover {
        box-shadow: 0 5px 20px rgba(232, 64, 28, 0.15);
    }

    .team-member .member-icon {
        font-size: 50px;
        color: #E8401C;
        margin-bottom: 15px;
    }

    .team-member h4 {
        font-size: 20px;
        font-weight: 600;
        color: #C0321A;
        margin: 10px 0;
    }

    .team-member .member-role {
        font-size: 14px;
        color: #E8401C;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .team-member p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

.timeline {
    position: relative;
    padding: 20px 0;
    margin-top: 30px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #E8401C;
    }

.timeline-item {
    margin-bottom: 30px;
    margin-left: 100px;
    position: relative;
}

    .timeline-item::before {
        content: '';
        position: absolute;
        left: -74px;
        top: 8px;
        width: 16px;
        height: 16px;
        background: #E8401C;
        border: 3px solid white;
        border-radius: 50%;
        box-shadow: 0 0 0 2px #E8401C;
    }

    .timeline-item .year {
        font-size: 18px;
        font-weight: 700;
        color: #E8401C;
        margin-bottom: 5px;
    }

    .timeline-item .description {
        font-size: 16px;
        color: #333;
        line-height: 1.6;
    }

@media (max-width: 768px) {

    .section-title {
        font-size: 24px;
    }

    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        margin-left: 70px;
    }

        .timeline-item::before {
            left: -50px;
        }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: #FFF5F2;
    font-family: 'Segoe UI', sans-serif;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

form#form1 > nav,
nav {
    background: #fff !important;
    border-bottom: 1.5px solid #F0D0C8 !important;
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    min-height: 60px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 999 !important;
}

    nav * {
        box-sizing: border-box;
    }

/* ── Logo ── */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 10px 0;
    order: 1;
}

    .nav-logo a {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

.custom_logo {
    display: block !important;
    float: none !important;
    height: 55px !important;
    width: auto !important;
    max-width: 220px;
    object-fit: contain;
    visibility: visible !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ── Navigation Menu ── */
.nav-menu {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    order: 2;
    width: auto;
}

    .nav-menu li {
        display: inline-block;
    }

    .nav-menu a {
        display: block;
        padding: 12px 16px;
        color: #333 !important;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
    }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #E8401C !important;
            border-bottom-color: #E8401C;
        }

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    order: 3;
}

.btn-register {
    padding: 8px 20px;
    border: 2px solid #E8401C;
    background: transparent;
    color: #E8401C !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
    white-space: nowrap;
    transition: background 0.2s;
}

    .btn-register:hover {
        background: #FFF5F2;
        color: #E8401C !important;
        text-decoration: none !important;
    }

.btn-login {
    padding: 8px 20px;
    border: 2px solid #E8401C;
    background: #E8401C;
    color: #fff !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
    white-space: nowrap;
    transition: background 0.2s;
}

    .btn-login:hover {
        background: #C0321A;
        border-color: #C0321A;
        color: #fff !important;
        text-decoration: none !important;
    }

.main-content {
    flex: 1;
    padding: 20px;
}

footer {
    margin-top: auto;
    background: #eb5037 !important;
    color: #fffcfc;
    padding: 30px 20px !important;
    font-size: 13px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: #ffe0b2;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-section a:hover {
        color: #ffe0b2;
        text-decoration: underline;
    }

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

    .footer-bottom span,
    footer span {
        color: #ffe0b2;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

#ulUserNavigation li {
    list-style: none;
    width: 100%;
}

    #ulUserNavigation li a,
    #ulUserNavigation li span,
    #ulUserNavigation li input[type=submit] {
        display: block;
        width: 100%;
        padding: 12px 16px;
        color: #fff !important;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,.1);
        font-size: 14px;
    }

    #ulUserNavigation li:last-child a,
    #ulUserNavigation li:last-child input {
        border-bottom: none;
    }

    #ulUserNavigation li a:hover,
    #ulUserNavigation li input:hover {
        background: #E8401C;
    }

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #E8401C;
    --bs-btn-border-color: #C0321A;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #C0321A;
    --bs-btn-hover-border-color: #C0321A;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #C0321A;
    --bs-btn-active-border-color: #C0321A;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #f0a888;
    --bs-btn-disabled-border-color: #f0a888;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active,
    .btn-primary.active,
    .open .dropdown-toggle.btn-primary {
        color: #fff !important;
        background-color: #C0321A !important;
        border-color: #C0321A !important;
    }


@media (max-width: 992px) {
    form#form1 > nav,
    nav {
        padding: 0 12px !important;
        flex-wrap: nowrap !important;
    }

    .custom_logo {
        height: 38px !important;
        max-width: 140px;
    }

    .nav-menu a {
        padding: 10px 10px;
        font-size: 13px;
    }

    .btn-register,
    .btn-login {
        padding: 6px 12px;
        font-size: 12px;
    }

    .nav-links {
        gap: 6px;
    }
}

@media (max-width: 768px) {
    form#form1 > nav,
    nav {
        flex-wrap: wrap !important;
        padding: 0 12px !important;
        min-height: auto !important;
    }

    .nav-logo {
        order: 1;
        padding: 10px 0;
    }

    .nav-links {
        order: 3;
        gap: 6px;
    }

    .nav-menu {
        order: 2;
        width: 100%;
        justify-content: center;
        padding: 4px 0 6px;
    }

        .nav-menu a {
            padding: 8px 10px;
            font-size: 12.5px;
        }

    .btn-register,
    .btn-login {
        padding: 6px 12px;
        font-size: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 445px) {
    .custom_logo {
        height: 32px !important;
        max-width: 110px;
    }

    .btn-register,
    .btn-login {
        padding: 5px 9px;
        font-size: 11px;
    }

    .nav-logo {
        order: 1;
        padding: 10px 0;
    }

    .nav-links {
        order: 2;
        gap: 6px;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
        border-top: 1px solid #F0D0C8;
        padding: 4px 0 6px;
    }

        .nav-menu a {
            padding: 8px 6px;
            font-size: 11.5px;
        }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
