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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #faf9f7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #3a3a3a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

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

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

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #8b7355;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

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

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-section {
    margin: 40px 0;
}

.hero-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 1200px;
    margin: 0 auto;
    background-color: #d4c4b0;
}

.hero-image-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    padding: 60px 40px 40px;
}

.hero-text-overlay h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-text-overlay p {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 600px;
}

.cta-hero {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-hero:hover {
    background-color: #6f5a43;
}

.intro-cards {
    padding: 70px 0;
}

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

.intro-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.card-icon {
    font-size: 40px;
    color: #8b7355;
    margin-bottom: 20px;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

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

.services-section {
    padding: 80px 0;
    background-color: #f4f1ed;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.section-header p {
    font-size: 17px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    width: 360px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: #d4c4b0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 28px;
}

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

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

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

.btn-select-service {
    width: 100%;
    padding: 12px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
}

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

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

.process-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

.process-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.process-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.process-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    background-color: #d4c4b0;
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.testimonial-card {
    background-color: #f9f8f6;
    padding: 35px 30px;
    border-radius: 10px;
    border-left: 4px solid #8b7355;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    color: #8b7355;
    font-weight: 600;
}

.order-section {
    padding: 80px 0;
    background-color: #f4f1ed;
}

.order-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.order-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c2c2c;
    text-align: center;
}

.order-card > p {
    text-align: center;
    margin-bottom: 35px;
    color: #666;
    font-size: 16px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #f9f9f9;
    cursor: not-allowed;
}

.btn-submit {
    padding: 14px;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #6f5a43;
}

.main-footer {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 50px 0 0;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #8b7355;
}

.footer-disclaimer {
    background-color: #1a1a1a;
    padding: 25px 0;
    border-top: 1px solid #3a3a3a;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 32px;
    }

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

    .process-layout {
        flex-direction: column;
    }

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

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

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}