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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s;
}

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

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

.btn-reject {
    background: #666666;
    color: #ffffff;
}

.btn-reject:hover {
    background: #555555;
}

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

.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: bold;
    color: #2c2c2c;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 16px;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #666666;
    font-style: italic;
}

.hero-magazine {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #3a3a3a;
}

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

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

.hero-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.hero-overlay p {
    font-size: 20px;
    color: #4a4a4a;
}

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

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

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

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

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

.column-main {
    flex: 2;
}

.column-side {
    flex: 1;
}

.column-main h2 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.column-main p {
    margin-bottom: 20px;
    font-size: 18px;
}

.info-card {
    background: #f5f5f5;
    padding: 30px;
    border-left: 4px solid #4a7c59;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.6;
}

.services-preview {
    padding: 80px 0;
    background: #f9f9f9;
}

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
}

.services-grid-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card-large {
    flex: 1 1 100%;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #e8e8e8;
}

.service-card-small {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #e8e8e8;
}

.service-card-large img,
.service-card-small img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #4a7c59;
    margin: 20px 0;
}

.select-service {
    padding: 12px 30px;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

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

.featured-content {
    padding: 80px 0;
    background: #ffffff;
}

.featured-content h2 {
    font-size: 38px;
    margin-bottom: 35px;
}

.featured-content img {
    width: 100%;
    height: auto;
    margin: 35px 0;
    object-fit: cover;
    background-color: #d0d0d0;
}

.featured-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.services-additional {
    padding: 80px 0;
    background: #2c2c2c;
    color: #ffffff;
}

.services-split {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-detail {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    padding: 35px;
    background: #3a3a3a;
}

.service-detail h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-detail p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-detail .price {
    color: #8fb89f;
}

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

.inquiry-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
}

.inquiry-section > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.inquiry-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 25px;
    flex: 1 1 100%;
}

.form-row .form-group {
    flex: 1 1 calc(50% - 10px);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #4a7c59;
    color: #ffffff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.visual-break {
    background-color: #3a3a3a;
}

.wide-image {
    max-width: 100%;
}

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

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

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

.footer-column {
    flex: 1 1 200px;
}

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 12px;
    color: #999999;
    font-style: italic;
    max-width: 900px;
    margin: 20px auto 0;
}

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

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

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

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

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

.page-hero {
    padding: 100px 0 60px;
    background: #f5f5f5;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.lead {
    font-size: 20px;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.about-main {
    padding: 80px 0;
    background: #ffffff;
}

.about-main img {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    object-fit: cover;
    background-color: #d0d0d0;
}

.about-main h2 {
    font-size: 32px;
    margin: 40px 0 20px;
}

.about-main p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-visual {
    background-color: #3a3a3a;
}

.about-approach {
    padding: 80px 0;
    background: #fafafa;
}

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

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
}

.services-page-intro {
    padding: 80px 0;
    background: #ffffff;
}

.services-page-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.services-page-intro p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 80px 0;
    background: #f9f9f9;
}

.service-block {
    margin-bottom: 60px;
    padding: 50px;
    background: #ffffff;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

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

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

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-info .price {
    font-size: 26px;
    font-weight: bold;
    color: #4a7c59;
    margin: 25px 0;
}

.contact-page {
    padding: 80px 0;
    background: #ffffff;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #4a7c59;
}

.contact-details p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-map {
    flex: 1;
    background: #e0e0e0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-page {
    padding: 120px 0;
    background: #f5f5f5;
    text-align: center;
    min-height: 60vh;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 40px;
}

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-content .service-name {
    font-weight: bold;
    color: #2c2c2c;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s;
}

.thanks-content a:hover {
    background: #4a7c59;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 40px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

    .service-block {
        flex-direction: column;
    }

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

    .contact-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .form-row .form-group {
        flex: 1 1 100%;
    }

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

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