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

:root {
    --primary: #2d3142;
    --secondary: #bfc0c0;
    --accent: #ef8354;
    --light: #f7f7f7;
    --dark: #1a1a1a;
    --border: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary);
    background-color: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background-color: var(--primary);
    color: white;
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #e8dfd4;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 40px;
    background: rgba(45, 49, 66, 0.75);
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #d97343;
    transform: translateY(-2px);
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8dfd4;
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary);
}

.card-description {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.card-button {
    padding: 12px 25px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.card-button:hover {
    background-color: #3d4254;
}

.intro-card {
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

.intro-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.form-section {
    background: linear-gradient(135deg, var(--primary) 0%, #3d4254 100%);
    padding: 80px 0;
    color: white;
}

.form-card {
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    max-width: 600px;
    margin: 0 auto;
    color: var(--primary);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #d97343;
}

footer {
    background-color: var(--primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--secondary);
    font-size: 14px;
}

.disclaimer {
    background-color: #fff9e6;
    border-left: 4px solid var(--accent);
    padding: 25px;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 4px;
}

.disclaimer p {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
    padding: 25px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-button {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: var(--accent);
    color: white;
}

.cookie-accept:hover {
    background-color: #d97343;
}

.cookie-reject {
    background-color: var(--secondary);
    color: var(--primary);
}

.cookie-reject:hover {
    background-color: #a0a1a1;
}

.content-page {
    background: white;
    padding: 60px 40px;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary);
}

.content-page h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--primary);
}

.content-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary);
}

.content-page p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

.content-page ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.content-page ul li {
    margin-bottom: 8px;
    color: #666;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-card {
    background: white;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    max-width: 600px;
}

.thanks-card h1 {
    font-size: 42px;
    color: var(--accent);
    margin-bottom: 20px;
}

.thanks-card p {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-info {
    background: var(--light);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info h2 {
    margin-bottom: 25px;
    color: var(--primary);
}

.info-item {
    margin-bottom: 20px;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
}

.info-item p {
    color: #666;
}

.service-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.service-option {
    flex: 1 1 calc(50% - 8px);
    min-width: 200px;
}

.service-option input[type="radio"] {
    display: none;
}

.service-label {
    display: block;
    padding: 20px;
    border: 2px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.service-option input[type="radio"]:checked + .service-label {
    border-color: var(--accent);
    background-color: #fff5f0;
}

.service-label:hover {
    border-color: var(--accent);
}

.service-label .service-name {
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.service-label .service-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 32px;
    }

    .card {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .form-card {
        padding: 30px 20px;
    }
}
