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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
}

h2 {
    font-size: 2.2rem;
    color: #2a2a2a;
}

h3 {
    font-size: 1.6rem;
    color: #3a3a3a;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #2c5f2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3f1b;
}

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', sans-serif;
}

.nav-center .nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    color: #4a4a4a;
    transition: color 0.3s ease;
}

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

.nav-right .ad-notice {
    font-size: 0.85rem;
    color: #888;
    font-family: 'Helvetica Neue', sans-serif;
    border: 1px solid #ddd;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
}

.hero-magazine {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background-color: #2a2a2a;
}

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

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

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

.hero-text-overlay h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-text-overlay p {
    font-size: 1.4rem;
    color: #f5f5f5;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.container-magazine {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.intro-columns {
    display: flex;
    gap: 3rem;
}

.intro-main {
    flex: 2;
}

.intro-sidebar {
    flex: 1;
}

.sidebar-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-left: 4px solid #2c5f2d;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.services-preview {
    background-color: #f5f5f5;
    padding: 5rem 0;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: #666;
}

.services-grid-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card-mag {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #ffffff;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-mag:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-service {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 0.9rem 1.8rem;
    border: none;
    font-size: 1rem;
    font-family: 'Helvetica Neue', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-service:hover {
    background-color: #1a3f1b;
}

.form-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.form-wrapper-magazine {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fafafa;
    padding: 3rem;
    border: 1px solid #e0e0e0;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.form-header p {
    font-size: 1rem;
    color: #666;
}

.contact-form-magazine {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.form-group label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    background-color: #ffffff;
    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 {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 1.1rem 2.5rem;
    border: none;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonials-section {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

.testimonials-magazine {
    display: flex;
    gap: 2.5rem;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid #2c5f2d;
    font-style: italic;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: #2c5f2d;
    font-family: 'Helvetica Neue', sans-serif;
}

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 4rem 0 1.5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-columns {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #d0d0d0;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.96);
    color: #ffffff;
    padding: 1.5rem 2rem;
    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;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-hero-small {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero-small h1 {
    color: #ffffff;
    font-size: 3rem;
}

.about-content,
.services-full,
.contact-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.about-layout {
    display: flex;
    gap: 3.5rem;
}

.about-main-text {
    flex: 2;
}

.about-sidebar-content {
    flex: 1;
}

.about-image-inline {
    margin: 2.5rem 0;
    background-color: #e0e0e0;
}

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

.sidebar-box {
    background-color: #f9f9f9;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #2c5f2d;
}

.sidebar-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box ul li {
    padding: 0.5rem 0;
    color: #555;
}

.values-section {
    background-color: #f5f5f5;
    padding: 5rem 0;
}

.values-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-top: 4px solid #2c5f2d;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: #555;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.service-pricing {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}

.service-pricing .price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
    font-family: 'Helvetica Neue', sans-serif;
}

.service-pricing .price-note {
    font-size: 1rem;
    color: #666;
}

.contact-layout {
    display: flex;
    gap: 3.5rem;
    align-items: flex-start;
}

.contact-info-main {
    flex: 1.5;
}

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

.contact-image-side img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.contact-details-block {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c5f2d;
}

.contact-note {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid #2c5f2d;
}

.location-info {
    background-color: #f5f5f5;
    padding: 4rem 0;
}

.location-info h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

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

.thanks-section {
    background-color: #ffffff;
    padding: 6rem 0;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    display: inline-block;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.service-confirmation {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #2c5f2d;
    font-size: 1.1rem;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
    background-color: #f5f5f5;
    padding: 2.5rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.thanks-next-steps ol {
    margin-left: 1.5rem;
}

.thanks-next-steps ol li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

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

.legal-content {
    background-color: #ffffff;
    padding: 4rem 0;
}

.container-legal {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-legal h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: #2c5f2d;
}

.container-legal h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.container-legal h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.container-legal ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.container-legal ul li {
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem !important;
        text-align: center;
    }

    .intro-columns,
    .about-layout,
    .contact-layout {
        flex-direction: column;
    }

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

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

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

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

    .testimonials-magazine {
        flex-direction: column;
    }

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

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

    .values-grid {
        flex-direction: column;
    }

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