* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #f1ebe0;
    --color-primary: #172b69;
    --color-dark: #0a1237;
    --color-accent: #172b69;
    --color-text: #0a1237;
    --color-light: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-dark);
}

header {
    background-color: var(--color-light);
    box-shadow: 0 2px 10px rgba(10, 18, 55, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: var(--color-light);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../image/picture.jpg') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--color-light);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-light);
    color: var(--color-primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.2s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--color-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: rgba(10, 18, 55, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background-color: var(--color-light);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(10, 18, 55, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(10, 18, 55, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    stroke: var(--color-primary);
    stroke-width: 1.5;
    fill: none;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    background-color: #ddd;
}

.content-section {
    padding: 3rem 0;
}

.content-section h2 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 2rem auto;
    display: block;
    background-color: #ddd;
    box-shadow: 0 5px 20px rgba(10, 18, 55, 0.1);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-grid img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 10px;
    background-color: #ddd;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.why-choose-section {
    padding: 4rem 0;
}

.why-choose-content {
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-text {
    margin-bottom: 2rem;
}

.why-choose-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background-color: var(--color-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(10, 18, 55, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 18, 55, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: rgba(10, 18, 55, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--color-light);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--color-light);
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-light);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(10, 18, 55, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(10, 18, 55, 0.1);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid[style*="display: flex"] {
        flex-direction: column !important;
    }

    .cards-grid .card[style*="width: 45%"] {
        width: 100% !important;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .content-image {
        height: 250px;
    }

    section[style*="background: linear-gradient"] {
        padding: 2rem 1rem !important;
        margin: 2rem 1rem !important;
    }

    section[style*="background: linear-gradient"] .section-title h2 {
        font-size: 1.75rem;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--color-light);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: var(--color-light);
    color: var(--color-primary);
}

.cookie-btn-accept:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-light);
    border: 2px solid var(--color-light);
}

.cookie-btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
    background-color: transparent;
    color: var(--color-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-light);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.5rem 1rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 0.75rem;
    }

    nav {
        padding: 0.5rem 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .mobile-menu-toggle {
        font-size: 1.3rem;
    }

    .hero {
        padding: 1.5rem 0.75rem;
    }

    .hero h1 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

    section {
        padding: 1.5rem 0;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .cards-grid {
        gap: 1rem;
    }

    .cards-grid[style*="display: flex"] {
        flex-direction: column !important;
    }

    .cards-grid .card[style*="width: 45%"] {
        width: 100% !important;
    }

    .card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    .card p {
        font-size: 0.9rem;
    }

    .card-image {
        height: 180px;
        margin-bottom: 1rem;
    }

    .content-section {
        padding: 1.5rem 0;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
    }

    .content-section p {
        font-size: 0.9rem;
    }

    .content-image {
        height: 180px;
        margin: 1rem 0;
    }

    .image-grid {
        gap: 1rem;
    }

    .image-grid img {
        height: 200px;
    }

    .features-list {
        padding-left: 1.5rem;
    }

    .features-list li {
        font-size: 0.9rem;
        padding: 0.75rem 0;
    }

    .why-choose-section {
        padding: 1.5rem 0;
    }

    .why-choose-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .feature-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-item p {
        font-size: 0.85rem;
    }

    footer {
        padding: 2rem 0.75rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }

    .map-container {
        margin-top: 1.5rem;
    }

    .map-container iframe {
        height: 250px;
    }

    .cookie-banner {
        padding: 1rem 0.75rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    section[style*="background: linear-gradient"] {
        padding: 1.5rem 0.75rem !important;
        margin: 1.5rem 0.75rem !important;
        border-radius: 15px;
    }

    section[style*="background: linear-gradient"] .section-title h2 {
        font-size: 1.3rem;
    }

    section[style*="background: linear-gradient"] .section-title p {
        font-size: 0.85rem;
    }

    section[style*="background: linear-gradient"] > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    section[style*="background: linear-gradient"] > div[style*="display: grid"] > div {
        padding: 1rem !important;
    }

    section[style*="background: linear-gradient"] > div[style*="display: grid"] > div > div[style*="font-size: 2.5rem"] {
        font-size: 2rem !important;
    }

    section[style*="background: linear-gradient"] > div[style*="display: grid"] > div h3 {
        font-size: 1.1rem !important;
    }

    section[style*="background: linear-gradient"] > div[style*="display: grid"] > div p {
        font-size: 0.85rem !important;
    }

    section[style*="background: linear-gradient"] > div[style*="margin-top: 3rem"] {
        margin-top: 1.5rem !important;
        padding: 1.5rem 1rem !important;
    }

    section[style*="background: linear-gradient"] > div[style*="margin-top: 3rem"] h3 {
        font-size: 1.2rem !important;
    }

    section[style*="background: linear-gradient"] > div[style*="margin-top: 3rem"] p {
        font-size: 0.9rem !important;
    }

    .legal-content {
        padding: 1rem !important;
        margin: 1.5rem 0.75rem !important;
    }

    .legal-content h1 {
        font-size: 1.5rem !important;
    }

    .legal-content h2 {
        font-size: 1.3rem !important;
        margin-top: 1.5rem !important;
    }

    .legal-content h3 {
        font-size: 1.1rem !important;
    }

    .legal-content p {
        font-size: 0.85rem !important;
    }

    .success-container {
        padding: 1.5rem 1rem !important;
        margin: 1.5rem 0.75rem !important;
    }

    .success-container h1 {
        font-size: 1.5rem !important;
    }

    .success-container p {
        font-size: 0.9rem !important;
    }

    .success-icon {
        font-size: 3.5rem !important;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
        padding: 0.7rem !important;
    }

    form {
        width: 100%;
    }

    form > div {
        margin-bottom: 1rem !important;
    }

    label {
        font-size: 0.9rem !important;
    }

    .nav-menu {
        padding: 1rem 0.75rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.9rem;
    }

    a {
        font-size: 0.9rem;
    }

    div[style*="display: grid"][style*="grid-template-columns: repeat(auto-fit, minmax(300px"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 1.5rem !important;
    }

    div[style*="margin-bottom: 2rem"] {
        margin-bottom: 1.5rem !important;
    }

    a[style*="font-size: 1.2rem"] {
        font-size: 1rem !important;
    }

    div[style*="margin-top: 2rem"] {
        margin-top: 1.5rem !important;
    }

    div[style*="margin-top: 3rem"] {
        margin-top: 1.5rem !important;
    }

    div[style*="padding: 2rem"] {
        padding: 1rem !important;
    }

    div[style*="padding: 3rem"] {
        padding: 1.5rem !important;
    }

    div[style*="gap: 3rem"] {
        gap: 1.5rem !important;
    }

    div[style*="gap: 2rem"] {
        gap: 1rem !important;
    }

    p[style*="margin-bottom: 1.5rem"] {
        margin-bottom: 1rem !important;
    }

    h3[style*="margin-bottom: 0.5rem"] {
        margin-bottom: 0.5rem !important;
    }

    h3[style*="margin-bottom: 1rem"] {
        margin-bottom: 0.75rem !important;
    }

    p[style*="margin-bottom: 2rem"] {
        margin-bottom: 1rem !important;
    }

    p[style*="margin-bottom: 1.5rem"] {
        margin-bottom: 1rem !important;
    }

    form[style*="margin-top: 2rem"] {
        margin-top: 1.5rem !important;
    }
}

