* {
    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: 20px;
    z-index: 10000;
    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;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

.btn-cookie-accept:hover {
    background-color: #5a8c69;
}

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

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

.header-magazine {
    background-color: #ffffff;
    border-bottom: 3px solid #2c2c2c;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-disclosure {
    background-color: #f4e4c1;
    color: #6b4423;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.brand-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #2c2c2c;
}

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

.nav-magazine a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-magazine a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4a7c59;
    transition: width 0.3s ease;
}

.nav-magazine a:hover::after {
    width: 100%;
}

.hero-magazine {
    position: relative;
}

.hero-image-container {
    position: relative;
    height: 600px;
    background-color: #e8dcc4;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
}

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

.hero-overlay p {
    font-size: 20px;
    line-height: 1.5;
}

.intro-split {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.split-columns {
    display: flex;
    gap: 60px;
    align-items: center;
}

.column-narrow {
    flex: 1;
}

.column-narrow h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.column-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.column-wide {
    flex: 1.2;
    background-color: #f5f0e8;
}

.column-wide img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-services-grid {
    padding: 100px 40px;
    background-color: #f9f6f1;
}

.section-title-centered {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c2c2c;
}

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

.service-card-magazine {
    background-color: #ffffff;
    width: calc(33.333% - 27px);
    min-width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image-wrapper {
    height: 250px;
    overflow: hidden;
    background-color: #e8dcc4;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.service-card-magazine:hover .service-image-wrapper img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

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

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 20px;
}

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

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.philosophy-section {
    padding: 90px 40px;
    background-color: #ffffff;
}

.philosophy-layout {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.philosophy-text {
    flex: 1.3;
}

.philosophy-text h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: #2c2c2c;
}

.philosophy-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.philosophy-image {
    flex: 1;
    background-color: #e8dcc4;
}

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

.testimonials-editorial {
    padding: 80px 40px;
    background-color: #3d3d3d;
    color: #ffffff;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

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

.testimonial-block {
    margin-bottom: 45px;
    padding: 35px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #4a7c59;
}

.testimonial-block p {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-block cite {
    font-size: 15px;
    font-style: normal;
    color: #c9c9c9;
}

.cta-form-section {
    padding: 90px 40px;
    background-color: #f5f0e8;
}

.form-wrapper-magazine {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.form-wrapper-magazine h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.form-wrapper-magazine > p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 35px;
}

.contact-form-magazine {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

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

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

.btn-submit-form {
    padding: 16px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-submit-form:hover {
    background-color: #5a8c69;
}

.disclaimer-section {
    padding: 50px 40px;
    background-color: #fef8e7;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #5a5a5a;
    text-align: center;
}

.footer-magazine {
    background-color: #2c2c2c;
    color: #c9c9c9;
    padding: 60px 40px 30px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a4a4a;
    font-size: 13px;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background-color: #f9f6f1;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 42px;
    color: #4a7c59;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.btn-return-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

.about-story {
    padding: 70px 40px;
    background-color: #f9f6f1;
}

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

.story-text {
    flex: 1.2;
}

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

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 18px;
}

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

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

.services-page-hero {
    padding: 80px 40px;
    background-color: #f9f6f1;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.services-page-hero p {
    font-size: 19px;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-page-hero {
    padding: 70px 40px;
    background-color: #f9f6f1;
    text-align: center;
}

.contact-page-hero h1 {
    font-size: 46px;
    margin-bottom: 18px;
    color: #2c2c2c;
}

.contact-info-section {
    padding: 70px 40px;
    background-color: #ffffff;
}

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

.contact-detail-block {
    margin-bottom: 35px;
}

.contact-detail-block h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.contact-detail-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

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

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

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

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

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .split-columns,
    .philosophy-layout,
    .about-story-content {
        flex-direction: column;
    }

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

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

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

    .nav-magazine {
        gap: 20px;
    }
}
