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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #3a3a3a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: 300px;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #5a8f5a;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #4a7a4a;
}

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0ddd7;
    padding: 20px 0;
}

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

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a4a4a;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    background-color: #fff3cd;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #f0e5b8;
}

.ad-label {
    font-size: 0.85rem;
    color: #856404;
    font-weight: 500;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
}

.hero-overlay h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 1.2rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.intro-columns {
    display: flex;
    gap: 40px;
    padding: 60px 40px;
    background-color: #ffffff;
    margin-bottom: 40px;
}

.column-wide {
    flex: 2;
}

.column-narrow {
    flex: 1;
}

.column-wide h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c2c2c;
    line-height: 1.3;
}

.column-wide p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    text-align: justify;
}

.info-box {
    background-color: #f5f3ef;
    padding: 30px;
    border-left: 4px solid #5a8f5a;
}

.info-box h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #e0ddd7;
}

.info-box li:last-child {
    border-bottom: none;
}

.visual-break {
    margin-bottom: 60px;
}

.two-column-images {
    display: flex;
    align-items: center;
}

.image-cell {
    flex: 1;
    background-color: #d4c4b0;
}

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

.text-cell {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

.text-cell h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.text-cell p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

.services-preview {
    padding: 80px 40px;
    background-color: #fafaf8;
}

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

.section-header-centered h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #6a6a6a;
}

.services-grid-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e6e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    flex-grow: 1;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #5a8f5a;
    margin-bottom: 20px;
}

.service-select-btn {
    padding: 14px 32px;
    background-color: #5a8f5a;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.content-split {
    display: flex;
    margin-bottom: 60px;
}

.split-text {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.split-text p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

.inline-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background-color: #4a4a4a;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.inline-cta:hover {
    background-color: #2c2c2c;
}

.split-image {
    flex: 1;
    background-color: #c8b8a8;
}

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

.form-section {
    padding: 80px 40px;
    background-color: #f0ede8;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border: 1px solid #e0ddd7;
}

.form-container h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.form-container > p {
    font-size: 1.05rem;
    margin-bottom: 35px;
    color: #5a5a5a;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 15px;
    margin-bottom: 25px;
    border-left: 4px solid #5a8f5a;
}

.selected-service-display p {
    margin: 0;
    font-size: 1rem;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #3a3a3a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #d0ccc5;
    background-color: #fafaf8;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 16px 40px;
    background-color: #5a8f5a;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fff9e6;
    border-top: 2px solid #f0e5b8;
    border-bottom: 2px solid #f0e5b8;
}

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

.disclaimer-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a5a5a;
    text-align: justify;
}

.main-footer {
    background-color: #3a3a3a;
    color: #d0d0d0;
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

.footer-column a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #555555;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.thanks-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px;
    background-color: #ffffff;
    border: 1px solid #e0ddd7;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #5a8f5a;
    margin-bottom: 25px;
}

.thanks-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.thanks-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #5a5a5a;
}

.back-home-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background-color: #5a8f5a;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.back-home-btn:hover {
    background-color: #4a7a4a;
}

.about-hero {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image-section {
    margin: 60px 0;
}

.about-image-section img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.services-detail-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.services-detail-content {
    max-width: 1200px;
    margin: 0 auto;
}

.services-detail-content h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #2c2c2c;
    text-align: center;
}

.service-detail-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

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

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

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

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

.service-detail-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.service-detail-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-detail-text .service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #5a8f5a;
    margin-top: 20px;
}

.contact-section {
    padding: 80px 40px;
    background-color: #fafaf8;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.contact-info-block {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #e0ddd7;
}

.contact-info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.contact-info-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .intro-columns,
    .two-column-images,
    .content-split,
    .service-detail-item {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .hero-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 25px;
    }

    .hero-overlay h2 {
        font-size: 2rem;
    }

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