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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f8f8;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    background: #ffffff;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d5f3f;
}

.hero-minimal {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 60px 60px;
}

.hero-content-wide {
    max-width: 900px;
    margin-bottom: 80px;
}

.hero-title-large {
    font-size: 82px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    color: #4a4a4a;
    font-weight: 300;
    max-width: 700px;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    background-color: #e8ebe8;
    overflow: hidden;
}

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

.intro-section {
    padding: 120px 60px;
}

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

.intro-section h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.2;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #2a2a2a;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.services-preview {
    padding: 120px 60px;
    background: #f9faf9;
}

.section-title-centered {
    text-align: center;
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 100px;
}

.service-grid-minimal {
    display: flex;
    flex-direction: column;
    gap: 140px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-large {
    display: flex;
    gap: 80px;
    align-items: center;
}

.service-image-wrapper {
    flex: 1;
    height: 500px;
    background-color: #e0e4e0;
    overflow: hidden;
}

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

.service-content-spacious {
    flex: 1;
    padding: 40px;
}

.service-content-spacious h3 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
}

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

.price-display {
    font-size: 28px;
    font-weight: 600;
    color: #2d5f3f;
    margin: 30px 0;
}

.cta-button {
    background: #2d5f3f;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #234a31;
}

.visual-break {
    width: 100%;
    height: 600px;
    background-color: #d8dcd8;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section {
    padding: 120px 60px;
}

.trust-section h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 40px;
}

.trust-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.contact-inline-section {
    padding: 140px 60px;
    text-align: center;
    background: #2d5f3f;
    color: #ffffff;
}

.contact-inline-section h2 {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 30px;
}

.contact-inline-section p {
    font-size: 20px;
    margin-bottom: 50px;
}

.cta-link-large {
    display: inline-block;
    padding: 20px 50px;
    background: #ffffff;
    color: #2d5f3f;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.cta-link-large:hover {
    background: #f0f0f0;
}

.disclaimer-section {
    padding: 80px 60px;
    background: #f5f5f5;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

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

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

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

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

.footer-column p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    color: #999;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background: #ffffff;
    margin: 80px auto;
    padding: 60px;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 32px;
    cursor: pointer;
    color: #666;
}

.modal-close:hover {
    color: #000;
}

.modal-content h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #1a1a1a;
}

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-content p {
    flex: 1;
    line-height: 1.6;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s;
}

.cookie-accept {
    background: #2d5f3f;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #234a31;
}

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

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

.contact-page {
    padding: 100px 60px;
}

.contact-page h1 {
    font-size: 62px;
    font-weight: 400;
    margin-bottom: 60px;
    text-align: center;
}

.contact-info-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
}

.contact-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.services-page {
    padding: 100px 60px;
}

.services-page h1 {
    font-size: 62px;
    font-weight: 400;
    margin-bottom: 80px;
    text-align: center;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.service-item-image {
    flex: 1;
    height: 400px;
    background-color: #e8ebe8;
    overflow: hidden;
}

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

.service-item-content {
    flex: 1;
}

.service-item-content h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 25px;
}

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

.about-page {
    padding: 100px 60px;
}

.about-page h1 {
    font-size: 62px;
    font-weight: 400;
    margin-bottom: 60px;
    text-align: center;
}

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

.about-content h2 {
    font-size: 38px;
    font-weight: 400;
    margin: 60px 0 30px;
}

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

.about-image {
    width: 100%;
    height: 500px;
    background-color: #e8ebe8;
    margin: 60px 0;
    overflow: hidden;
}

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

.legal-page {
    padding: 100px 60px;
}

.legal-page h1 {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 60px;
}

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

.legal-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin: 50px 0 25px;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 35px 0 20px;
}

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

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

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

.thanks-page {
    padding: 100px 60px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-page h1 {
    font-size: 62px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #2d5f3f;
}

.thanks-page p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto 30px;
}

.thanks-page a {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 40px;
    background: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.thanks-page a:hover {
    background: #234a31;
}

@media (max-width: 768px) {
    .main-nav {
        padding: 20px;
    }

    .hero-title-large {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .service-card-large {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info-grid {
        flex-direction: column;
        gap: 40px;
    }

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

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