* {
    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: #333;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-magazine {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

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

.hero-overlay p {
    font-size: 20px;
    max-width: 700px;
    opacity: 0.9;
}

.intro-multi {
    padding: 80px 20px;
    background-color: #fafafa;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.col-main {
    flex: 2;
}

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

.col-main p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.col-sidebar {
    flex: 1;
}

.insight-box {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 35px;
    border-radius: 4px;
}

.insight-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.stats-list {
    list-style: none;
}

.stats-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 16px;
}

.stats-list li:last-child {
    border-bottom: none;
}

.service-preview {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.service-card-mag {
    flex: 1;
    min-width: 320px;
    max-width: 360px;
}

.service-img-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #e0e0e0;
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-mag:hover .service-img-container img {
    transform: scale(1.05);
}

.service-card-mag h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.text-link {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.text-link:hover {
    opacity: 0.7;
}

.cta-inline {
    background-color: #f4f4f4;
    padding: 70px 20px;
}

.cta-content-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.cta-text {
    flex: 1.5;
}

.cta-text h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

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

.cta-action {
    flex: 1;
    text-align: right;
}

.btn-primary {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1f4420;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f2d;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2c5f2d;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.testimonial-magazine {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.testimonials-columns {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial-item {
    flex: 1;
    background-color: #fafafa;
    padding: 40px;
    border-left: 4px solid #2c5f2d;
}

.testimonial-item p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-item cite {
    font-style: normal;
    font-weight: 600;
    color: #2c5f2d;
    font-size: 15px;
}

.form-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 17px;
    color: #555;
}

.contact-form {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

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

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

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

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #2c5f2d;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: #2c5f2d;
}

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

.btn-accept {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: #1f4420;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    padding: 12px 30px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.page-header {
    background-color: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #555;
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.service-detail-layout.reverse {
    flex-direction: row-reverse;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
    font-size: 18px;
}

.price-display {
    background-color: #f4f4f4;
    padding: 25px;
    border-left: 4px solid #2c5f2d;
    margin-top: 30px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 8px;
}

.price-note {
    display: block;
    font-size: 14px;
    color: #666;
}

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

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

.cta-services {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 70px 20px;
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-services .btn-primary {
    background-color: #ffffff;
    color: #2c5f2d;
}

.cta-services .btn-primary:hover {
    background-color: #f4f4f4;
}

.about-hero {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 22px;
    opacity: 0.9;
}

.about-story {
    padding: 80px 20px;
}

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

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

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

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

.story-text-section {
    flex: 1;
}

.story-text-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.story-text-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.values-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 35px;
    border-top: 4px solid #2c5f2d;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.approach-section {
    padding: 80px 20px;
}

.approach-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1.2;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

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

.approach-visual {
    flex: 1;
    background-color: #e0e0e0;
}

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

.team-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #555;
}

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

.team-member {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 35px;
    border-left: 4px solid #2c5f2d;
}

.member-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.member-role {
    font-size: 15px;
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.cta-about {
    padding: 80px 20px;
    background-color: #2c5f2d;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-about .btn-primary {
    background-color: #ffffff;
    color: #2c5f2d;
}

.cta-about .btn-primary:hover {
    background-color: #f4f4f4;
}

.contact-hero {
    background-color: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 20px;
    color: #555;
}

.contact-main {
    padding: 80px 20px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

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

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.info-note {
    background-color: #f4f4f4;
    padding: 20px;
    border-left: 4px solid #2c5f2d;
    margin-top: 30px;
}

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

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

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

.location-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.location-details {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.location-column {
    flex: 1;
}

.location-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.location-column p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.response-info {
    padding: 60px 20px;
}

.response-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 40px;
    border-left: 4px solid #2c5f2d;
}

.response-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.response-box p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.thanks-container {
    padding: 100px 20px;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

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

.thanks-main-text {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.thanks-service-ref {
    background-color: #f4f4f4;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 4px;
    font-size: 16px;
    color: #2c5f2d;
    font-weight: 600;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 20px 0 20px 50px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid #e0e0e0;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 20px;
    background-color: #2c5f2d;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: #555;
}

.legal-intro {
    font-size: 17px;
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #2c5f2d;
    margin-bottom: 30px;
}

.legal-date {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #888;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #2c5f2d;
}

.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.url-display {
    color: #2c5f2d;
    word-break: break-all;
}

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

    .nav-links a {
        font-size: 14px;
    }

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

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

    .content-wrapper,
    .story-layout,
    .approach-layout,
    .contact-layout,
    .location-details,
    .testimonials-columns,
    .cta-content-split,
    .service-detail-layout {
        flex-direction: column;
    }

    .service-detail-layout.reverse {
        flex-direction: column;
    }

    .cta-action {
        text-align: center;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}