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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    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: 1rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a7c59;
    color: white;
}

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

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

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

.main-nav {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a7c59;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
    max-width: 200px;
    text-align: right;
}

.hero-minimal {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
    position: relative;
    background-color: #f5f5f5;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin-bottom: 4rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #4a4a4a;
    font-weight: 300;
}

.hero-image {
    width: 100%;
    max-width: 1000px;
    background-color: #d4c5b9;
}

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

.intro-section {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

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

.intro-container h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.intro-container p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
    line-height: 1.9;
}

.services-preview {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 5rem;
    color: #1a1a1a;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(50% - 1.5rem);
    min-width: 320px;
    max-width: 600px;
    background-color: #ffffff;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #d4c5b9;
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin: 2rem 2rem 1rem 2rem;
    font-weight: 500;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin: 0 2rem 1rem 2rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #4a7c59;
    margin: 1.5rem 2rem;
}

.btn-service {
    background-color: #2c2c2c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    margin: 0 2rem 2rem 2rem;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #4a7c59;
}

.craftsmanship-section {
    padding: 8rem 2rem;
    background-color: #ffffff;
    display: flex;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.craft-content {
    flex: 1;
}

.craft-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.craft-content p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.contact-form-section {
    padding: 8rem 2rem;
    background-color: #f5f5f5;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    flex: 1;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
    background-color: #ffffff;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #2c2c2c;
    color: white;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 4rem 2rem 2rem 2rem;
}

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

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-section p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4a7c59;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

.page-header {
    padding: 6rem 2rem 4rem 2rem;
    background-color: #f5f5f5;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.page-content h2 {
    font-size: 2rem;
    font-weight: 500;
    margin: 3rem 0 1.5rem 0;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 2rem 0 1rem 0;
    color: #2c2c2c;
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.page-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.page-content ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.about-image-section {
    margin: 3rem 0;
    background-color: #d4c5b9;
}

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

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 3rem 0;
}

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #d4c5b9;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-detail-content .price {
    font-size: 1.6rem;
    color: #4a7c59;
    font-weight: 600;
    margin: 1rem 0;
}

.service-detail-content p {
    margin-bottom: 1rem;
}

.contact-info-section {
    background-color: #fafafa;
    padding: 3rem;
    margin: 3rem 0;
}

.contact-info-section h3 {
    margin-top: 0;
}

.contact-info-section p {
    margin-bottom: 1rem;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-page h1 {
    font-size: 3rem;
    font-weight: 400;
    color: #4a7c59;
    margin-bottom: 2rem;
}

.thanks-page p {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.thanks-page .selected-service {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 2rem 0;
}

.thanks-page .btn-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c2c2c;
    color: white;
    text-decoration: none;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

.thanks-page .btn-home:hover {
    background-color: #4a7c59;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .ad-disclosure {
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .services-grid {
        flex-direction: column;
    }

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

    .craftsmanship-section {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .service-detail,
    .service-detail:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-image img {
        height: 300px;
    }
}