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

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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

.btn-reject:hover {
    background: #fff;
    color: #1a1a1a;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #888;
    font-family: 'Arial', sans-serif;
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-magazine {
    position: relative;
    margin-bottom: 80px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #8b7355;
}

.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;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 80px;
    color: #fff;
}

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

.hero-overlay p {
    font-size: 20px;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 300;
}

.intro-columns {
    padding: 80px 0;
    background: #fff;
}

.col-layout {
    display: flex;
    gap: 60px;
}

.col-left {
    flex: 1.5;
}

.col-right {
    flex: 1;
}

.col-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #1a1a1a;
}

.col-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.quote-box {
    background: #f5f5f5;
    padding: 40px;
    border-left: 4px solid #4a7c59;
}

.quote-box blockquote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.quote-box cite {
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.services-grid {
    padding: 80px 0;
    background: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 400;
    color: #1a1a1a;
}

.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: #fff;
    width: calc(33.333% - 27px);
    min-width: 320px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    font-weight: 600;
    color: #1a1a1a;
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c59;
    margin: 0 25px 20px;
}

.select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

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

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background: #f9f9f9;
    padding: 50px;
    border: 1px solid #e0e0e0;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: 'Georgia', serif;
    background: #fff;
}

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

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

.btn-submit:hover {
    background: #3d6649;
}

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

.process-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 400;
}

.process-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.process-step p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.main-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
}

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

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

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

.footer-col a:hover {
    color: #4a7c59;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

@media (max-width: 768px) {
    .col-layout {
        flex-direction: column;
    }

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

    .service-card {
        width: 100%;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

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