body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #1D3557;
    background-color: #F1FAEE;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

.container-lg {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

h1, h2, h3, h4, h5, h6 {
    color: #1D3557;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    margin-top: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-top: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #457B9D;
    text-decoration: none;
}

a:hover {
    color: #1D3557;
    text-decoration: underline;
}

.btn-primary {
    background-color: #457B9D;
    border-color: #457B9D;
    color: #F1FAEE;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1D3557;
    border-color: #1D3557;
    color: #F1FAEE;
}

.header-fixed {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #A8DADC;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1030;
}

.navbar-brand {
    color: #1D3557 !important;
    font-weight: 700;
    font-size: 1.8rem;
}

.navbar-nav .nav-link {
    color: #1D3557 !important;
    font-weight: 500;
    margin-left: 15px;
    margin-right: 15px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: #457B9D;
    color: #F1FAEE !important;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #F1FAEE;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 53, 87, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #F1FAEE;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    color: #F1FAEE;
}

.section-padding {
    padding: 60px 0;
}

.bg-light-cream {
    background-color: #F1FAEE;
}

.bg-light-blue {
    background-color: #A8DADC;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #FFFFFF;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1D3557;
    margin-bottom: 15px;
}

.card-text {
    font-size: 1rem;
    color: #457B9D;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #A8DADC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #1D3557;
}

.icon-circle-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #A8DADC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    color: #1D3557;
    flex-shrink: 0;
}

.list-item-with-icon {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.image-block-left, .image-block-right {
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.image-block-left .text-content, .image-block-right .text-content {
    padding: 20px;
}

.image-block-left img, .image-block-right img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.image-block-left .col-md-6:first-child {
    order: 2;
}

.image-block-left .col-md-6:last-child {
    order: 1;
}

@media (min-width: 768px) {
    .image-block-left .col-md-6:first-child {
        order: 1;
    }

    .image-block-left .col-md-6:last-child {
        order: 2;
    }
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1D3557;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #F1FAEE;
    border-radius: 8px 8px 0 0;
}

.faq-answer {
    padding: 15px 25px;
    font-size: 1rem;
    color: #457B9D;
    border-top: 1px solid #E0E0E0;
    display: none;
}

.faq-question .arrow {
    transition: transform 0.3s ease;
}

.faq-question.active .arrow {
    transform: rotate(180deg);
}

.footer {
    background-color: #1D3557;
    color: #F1FAEE;
    padding: 40px 0;
    margin-top: auto;
}

.footer a {
    color: #A8DADC;
    text-decoration: none;
}

.footer a:hover {
    color: #F1FAEE;
    text-decoration: underline;
}

.footer p, .footer ul {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer ul {
    padding-left: 0;
    list-style: none;
}

.footer .social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #A8DADC;
}

.footer .social-icons a:hover {
    color: #F1FAEE;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1D3557;
    color: #F1FAEE;
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner p {
    margin: 0;
    flex-grow: 1;
    margin-bottom: 10px;
}

.cookie-banner .btn-group {
    display: flex;
    gap: 10px;
}

.cookie-banner .btn {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-banner .btn-accept {
    background-color: #A8DADC;
    color: #1D3557;
    border: 1px solid #A8DADC;
}

.cookie-banner .btn-accept:hover {
    background-color: #457B9D;
    color: #F1FAEE;
    border-color: #457B9D;
}

.cookie-banner .btn-decline {
    background-color: #F1FAEE;
    color: #1D3557;
    border: 1px solid #F1FAEE;
}

.cookie-banner .btn-decline:hover {
    background-color: #A8DADC;
    border-color: #A8DADC;
}

.cookie-banner .btn-learn-more {
    background-color: transparent;
    color: #A8DADC;
    border: 1px solid #A8DADC;
}

.cookie-banner .btn-learn-more:hover {
    background-color: #A8DADC;
    color: #1D3557;
}

@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    .section-padding {
        padding: 40px 0;
    }
    .image-block-left .col-md-6, .image-block-right .col-md-6 {
        margin-bottom: 30px;
    }
    .image-block-left .text-content, .image-block-right .text-content {
        padding: 0;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-banner p {
        margin-bottom: 15px;
    }
    .cookie-banner .btn-group {
        width: 100%;
        justify-content: stretch;
    }
    .cookie-banner .btn {
        flex: 1;
    }
    .footer .col-md-4 {
        margin-bottom: 30px;
    }
}
