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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #6b4423;
    color: #fff;
}

.btn-accept:hover {
    background-color: #8b5a2b;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #6b4423;
}

.ad-disclosure {
    font-size: 11px;
    color: #888;
    background-color: #f5f5f5;
    padding: 4px 12px;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #6b4423;
}

.hero-section {
    margin-bottom: 60px;
}

.hero-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #d4a574;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background-color: rgba(0,0,0,0.45);
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    max-width: 700px;
}

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

.hero-overlay p {
    font-size: 20px;
    opacity: 0.95;
}

.intro-cards {
    padding: 60px 20px;
    background-color: #fff;
}

.container-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e6d5c3;
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #6b4423;
}

.card-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.services-section {
    padding: 80px 20px;
    background-color: #f9f7f4;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.container-wide h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #d4a574;
}

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #6b4423;
    margin-bottom: 16px;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background-color: #6b4423;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #8b5a2b;
}

.form-section {
    padding: 80px 20px;
    background-color: #fff;
}

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.container-narrow h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    color: #555;
}

#selectedService {
    color: #6b4423;
    font-weight: 700;
}

#selectedPrice {
    color: #6b4423;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b4423;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #6b4423;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #8b5a2b;
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ddd;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    line-height: 1.8;
}

.footer-col a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 5px;
    font-size: 13px;
    line-height: 1.7;
    color: #bbb;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 13px;
    color: #888;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .container-cards {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

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