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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #8b7355;
}

.ad-label {
    background-color: #f0ebe5;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.hero {
    margin-top: -2px;
}

.hero-image {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
    padding: 0 60px;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background-color: #8b7355;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #6f5c45;
}

.intro-section {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.products-grid {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

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

.product-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 300px;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-image {
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-body {
    padding: 30px;
}

.card-body h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.card-body p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1a1a1a;
}

.form-section {
    padding: 80px 0;
    background-color: #f0ebe5;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
}

.submit-button {
    width: 100%;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.info-section {
    padding: 80px 0;
}

.info-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f8f6f3;
    border-radius: 8px;
}

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

.info-card p {
    color: #666;
    line-height: 1.7;
}

.image-section {
    padding: 80px 0;
}

.split-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.split-image {
    flex: 1;
    min-width: 400px;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

.split-text {
    flex: 1;
    min-width: 400px;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.split-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.text-link {
    color: #8b7355;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #8b7355;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.text-link:hover {
    color: #6f5c45;
}

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    color: #bbb;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    margin-bottom: 10px;
    font-size: 14px;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #2c2c2c;
}

.cookie-content a {
    color: #8b7355;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #8b7355;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #6f5c45;
}

.btn-reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.btn-reject:hover {
    background-color: #d0d0d0;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.thanks-box {
    text-align: center;
    max-width: 600px;
    padding: 60px;
    background-color: #f8f6f3;
    border-radius: 8px;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #8b7355;
}

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

.thanks-box a {
    display: inline-block;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-box a:hover {
    background-color: #1a1a1a;
}

.page-header {
    background-color: #f8f6f3;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #2c2c2c;
}

.content-section {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c2c2c;
}

.content-wrapper h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c2c2c;
}

.content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.content-wrapper ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .nav {
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

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

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

    .split-image,
    .split-text {
        min-width: 100%;
    }

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

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