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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafaf8;
}

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

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

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

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

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

.cookie-btn.accept:hover {
    background-color: #45a049;
}

.cookie-btn.reject {
    background-color: #666;
    color: white;
}

.cookie-btn.reject:hover {
    background-color: #555;
}

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

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

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

.nav-center {
    display: flex;
    gap: 35px;
}

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

.nav-center a:hover {
    color: #8b4513;
}

.nav-right {
    display: flex;
    align-items: center;
}

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

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

.hero-magazine {
    display: flex;
    gap: 60px;
    padding: 80px 0;
    align-items: center;
}

.hero-text-column {
    flex: 1;
    max-width: 600px;
}

.hero-text-column h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-lead {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
}

.hero-image-column {
    flex: 1;
    background-color: #e8e6e1;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-column img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-columns {
    display: flex;
    gap: 50px;
    padding: 60px 0;
    border-top: 2px solid #d4cfc4;
}

.intro-sidebar {
    flex: 0 0 320px;
    background-color: #f9f7f4;
    padding: 40px 30px;
    border-radius: 6px;
}

.intro-sidebar h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-sidebar p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.inline-cta {
    display: inline-block;
    color: #8b4513;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #8b4513;
    padding-bottom: 2px;
    transition: border-color 0.3s;
}

.inline-cta:hover {
    border-color: #a0522d;
}

.intro-main {
    flex: 1;
    background-color: #e8e6e1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.intro-main img {
    width: 100%;
    height: 400px;
    display: block;
}

.image-caption {
    padding: 20px 25px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    background-color: #fafaf8;
}

.three-column-feature {
    display: flex;
    gap: 30px;
    padding: 80px 0;
}

.feature-card {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-card img {
    width: 100%;
    height: 220px;
    display: block;
}

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

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

.services-highlight {
    padding: 80px 0;
    background-color: #f4f2ed;
    margin: 0 -30px;
    padding-left: 30px;
    padding-right: 30px;
}

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

.services-intro-text h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.services-intro-text p {
    font-size: 18px;
    color: #555;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffffff;
    padding: 35px 28px;
    border-radius: 6px;
    border: 1px solid #d9d6d0;
    min-width: 280px;
    transition: border-color 0.3s;
}

.service-item:hover {
    border-color: #8b4513;
}

.service-item h4 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

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

.price-tag {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 12px 20px;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #a0522d;
}

.select-service.selected {
    background-color: #4CAF50;
}

.full-width-testimonial {
    padding: 100px 0;
    background-color: #8b4513;
    margin: 80px -30px 0;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content blockquote {
    border: none;
}

.testimonial-content p {
    font-size: 28px;
    color: #ffffff;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-content footer {
    font-size: 16px;
    color: #f5deb3;
    font-style: normal;
}

.offset-form-section {
    display: flex;
    gap: 60px;
    padding: 80px 0;
    align-items: flex-start;
}

.form-description {
    flex: 1;
    max-width: 500px;
}

.form-description h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.form-description p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-description img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.contact-form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 45px 40px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

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

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

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.selected-service-display {
    background-color: #f9f7f4;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.selected-service-display p {
    font-size: 15px;
    color: #2c2c2c;
}

.submit-btn {
    width: 100%;
    padding: 15px 20px;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.two-column-about {
    display: flex;
    gap: 70px;
    padding: 80px 0;
    align-items: center;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-text h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #e8e6e1;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.disclaimer-section {
    padding: 50px 0;
    border-top: 1px solid #d4cfc4;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #2c2c2c;
    color: #d4d4d4;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 80px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

.footer-col p {
    font-size: 14px;
    color: #d4d4d4;
    margin-bottom: 8px;
}

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

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

@media (max-width: 1024px) {
    .hero-magazine {
        flex-direction: column;
    }

    .intro-columns {
        flex-direction: column;
    }

    .intro-sidebar {
        flex: 1;
        max-width: 100%;
    }

    .three-column-feature {
        flex-direction: column;
    }

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

    .offset-form-section {
        flex-direction: column;
    }

    .two-column-about {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .magazine-nav {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .nav-center {
        flex-direction: column;
        gap: 10px;
    }

    .hero-text-column h1 {
        font-size: 36px;
    }

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