:root {
    --primary-color: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --white: #ffffff;
}

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

html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.navbar {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--primary-color);
}

.hero-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    border-radius: 8px;
    margin-top: 2rem;
    max-height: 400px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
    transform: translateY(-2px);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-color);
    background-color: var(--bg-light);
}

.value-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.page-header {
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
    transform: translateY(-4px);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    background: var(--white);
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-form .form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 1px solid var(--border-color);
    padding: 0.75rem;
    border-radius: 6px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
    outline: none;
}

.contact-form .form-check-label {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.contact-form .form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

.contact-info {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.contact-info h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info p {
    color: var(--text-light);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.thank-you-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.thank-you-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.thank-you-content .lead {
    font-size: 1.5rem;
    color: var(--text-dark);
}

footer {
    background-color: #1f2937;
    margin-top: auto;
}

footer h5 {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

footer ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-image {
        max-height: 250px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .thank-you-content .lead {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .navbar {
        background-color: var(--white) !important;
    }

    .nav-link {
        margin-left: 0;
        padding: 0.5rem 0 !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .product-image {
        height: 250px;
    }

    .contact-form {
        padding: 1rem;
    }

    .thank-you-content h1 {
        font-size: 1.5rem;
    }

    .thank-you-content .lead {
        font-size: 1rem;
    }
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-50:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}
