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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafaf8;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    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;
    margin: 0;
}

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

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

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

.btn-accept {
    background-color: #f4d35e;
    color: #2c2c2c;
}

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

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

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

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

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

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

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

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

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

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

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #d4c5b9;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-text p {
    font-size: 22px;
    opacity: 0.95;
}

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

.opening-text {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.story-section {
    padding: 80px 0;
    background-color: #fff;
}

.story-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #e8e3de;
}

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

.story-content {
    flex: 1;
}

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

.story-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    text-align: center;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.insight-section a {
    color: #c77d3a;
    text-decoration: none;
}

.insight-section a:hover {
    text-decoration: underline;
}

.cta-inline {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #c77d3a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #b36d2f;
    transform: translateY(-2px);
}

.craft-section {
    padding: 80px 0;
    background-color: #f5f1ed;
}

.craft-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.craft-text {
    flex: 1;
}

.craft-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.craft-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.craft-image {
    flex: 1;
    background-color: #d9cfc5;
}

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

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

.benefits-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

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

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 32px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #c77d3a;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #2c2c2c;
    color: #fff;
}

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

.testimonial {
    margin-bottom: 40px;
    padding: 28px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #f4d35e;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    font-style: normal;
    color: #f4d35e;
}

.services-reveal-section {
    padding: 100px 0;
    background-color: #fff;
}

.services-reveal-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.services-intro {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 380px;
    background-color: #fafaf8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border: 2px solid #f4d35e;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px 24px;
    color: #2c2c2c;
}

.service-card p {
    margin: 0 24px 20px 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.service-card ul {
    margin: 0 24px 24px 44px;
    list-style: disc;
}

.service-card li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #666;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #c77d3a;
    margin: 24px 24px 20px 24px;
}

.btn-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 14px;
    background-color: #c77d3a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-section > div > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    color: #666;
}

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

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

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

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

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

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

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

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

.about-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

.about-content img {
    width: 100%;
    height: auto;
    margin-bottom: 32px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #d9cfc5;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.references-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.references-list {
    margin-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.references-list a {
    color: #c77d3a;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

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

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

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

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

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

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 20px;
}

.disclaimer p {
    font-size: 12px;
    line-height: 1.7;
    color: #999;
}

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

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

    .story-grid,
    .craft-layout {
        flex-direction: column;
        gap: 30px;
    }

    .main-nav {
        gap: 15px;
    }

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

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

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