:root {
    --primary-teal: #5AAFA9;
    --primary-teal-dark: #3D8B87;
    --primary-teal-light: #DEF2F1;
    --text-dark: #2C3E50;
    --text-medium: #5D6D7E;
    --text-light: #7F8C8D;
    --bg-white: #FFFFFF;
    --bg-light: #FAFAFA;
    --bg-section: #F5F7F8;
    --border-light: #E8ECEF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-teal-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand:hover {
    color: var(--primary-teal-dark);
}

.navbar-brand img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
}

.navbar-nav .nav-link {
    color: var(--text-medium);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-teal);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

main {
    padding-top: 80px;
}

section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background-color: var(--bg-section);
}

.section-alt {
    background-color: var(--bg-section);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-teal-light) 0%, var(--bg-white) 100%);
    padding: 5rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.125rem;
    color: var(--text-medium);
}

.hero-image {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-teal);
    border-radius: 2px;
}

.card-custom {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card-custom:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.card-custom img {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.card-custom h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.card-custom p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.info-box {
    background-color: var(--primary-teal-light);
    border-left: 4px solid var(--primary-teal);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.info-box p {
    color: var(--text-dark);
    margin-bottom: 0;
}

.disclaimer-box {
    background-color: var(--bg-section);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.disclaimer-box h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.disclaimer-box p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.btn-read-more {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background-color: var(--primary-teal);
    color: var(--bg-white);
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item .btn-link {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    padding: 1.25rem;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item .btn-link:hover {
    color: var(--primary-teal);
}

.faq-item .btn-link::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item .btn-link[aria-expanded="true"]::after {
    content: '-';
}

.faq-item .card-body {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-medium);
}

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

.contact-form .form-control {
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(90, 175, 169, 0.15);
    outline: none;
}

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

.contact-form .btn-submit {
    background-color: var(--primary-teal);
    color: var(--bg-white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.contact-form .btn-submit:hover {
    background-color: var(--primary-teal-dark);
}

.contact-info {
    padding: 1rem 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-item .icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-teal-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-info-item .icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-teal);
}

.contact-info-item .details h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-item .details p {
    color: var(--text-medium);
    margin-bottom: 0;
    font-size: 0.95rem;
}

footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1.5rem;
}

footer h3 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

footer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

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

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-disclaimer {
    background-color: rgba(0,0,0,0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: rgba(255,255,255,0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cookie-banner .btn-accept {
    background-color: var(--primary-teal);
    color: var(--bg-white);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    margin-right: 0.5rem;
}

.cookie-banner .btn-accept:hover {
    background-color: var(--primary-teal-dark);
}

.cookie-banner a {
    font-size: 0.9rem;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-teal-light) 0%, var(--bg-white) 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.content-section {
    padding: 3rem 0;
}

.content-section h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.375rem;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .two-column-grid {
        grid-template-columns: 1fr 1fr;
    }

    section {
        padding: 5rem 0;
    }
}

@media (min-width: 992px) {
    .hero-section {
        padding: 6rem 0;
    }
}

@media (max-width: 767px) {
    main {
        padding-top: 70px;
    }

    .hero-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .hero-image {
        margin-top: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .contact-form {
        margin-top: 2rem;
    }
}
