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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.magazine-header {
    background-color: #1a2332;
    color: #ffffff;
    padding: 1.5rem 2rem;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.brand-section .logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

.brand-section .tagline {
    font-size: 0.9rem;
    color: #a8b8cc;
    font-weight: 300;
}

.ad-disclosure {
    background-color: #2a3a4a;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.disclosure-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e0e6ed;
}

.magazine-nav {
    display: flex;
    gap: 3rem;
    border-top: 1px solid #2a3a4a;
    padding-top: 1rem;
    flex-wrap: wrap;
}

.nav-column {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.magazine-nav a {
    color: #e0e6ed;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.hero-magazine {
    position: relative;
    margin-bottom: 3rem;
}

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

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 3rem 4rem;
    color: #ffffff;
}

.hero-overlay h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 1.2rem;
    max-width: 700px;
    color: #e0e6ed;
}

.intro-columns {
    display: flex;
    gap: 3rem;
    padding: 3rem 4rem;
    background-color: #f8f9fa;
}

.column-main {
    flex: 2;
}

.column-sidebar {
    flex: 1;
}

.intro-columns h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.intro-columns p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.quick-action-card {
    background-color: #ffffff;
    padding: 2rem;
    border-left: 4px solid #2e7d32;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.quick-action-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
}

.quick-action-card p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

.link-arrow:hover {
    color: #1b5e20;
}

.visual-break {
    margin: 4rem 0;
}

.dual-image-layout {
    display: flex;
    align-items: center;
    gap: 0;
}

.image-block {
    flex: 1;
    background-color: #3a5a4a;
}

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

.text-block {
    flex: 1;
    padding: 3rem;
    background-color: #2a3a2a;
    color: #ffffff;
}

.text-block h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.text-block p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e6ed;
}

.services-showcase {
    padding: 4rem 4rem;
    background-color: #ffffff;
}

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

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
}

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

.services-grid-magazine {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e6ed;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #4a6a5a;
}

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

.service-content {
    padding: 1.75rem;
}

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

.service-content p {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a6c7d;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.btn-select {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: #2e7d32;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #1b5e20;
}

.form-section {
    padding: 4rem 4rem;
    background-color: #f0f4f8;
}

.form-container-magazine {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-intro {
    margin-bottom: 2rem;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
}

.form-intro p {
    font-size: 1rem;
    color: #5a6c7d;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    font-size: 1rem;
    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: #2e7d32;
}

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

.btn-submit:hover {
    background-color: #0f1823;
}

.trust-section {
    padding: 3rem 4rem;
    background-color: #e8f5e9;
}

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

.trust-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.trust-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2c3e50;
}

.disclaimer-section {
    padding: 2rem 4rem;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
}

.disclaimer-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5a4a00;
}

.magazine-footer {
    background-color: #1a2332;
    color: #e0e6ed;
    padding: 3rem 4rem 1.5rem;
}

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

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

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

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #a8b8cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #4a9eff;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #a8b8cc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: #2a3a4a;
}

.thanks-page {
    padding: 4rem 2rem;
    min-height: 60vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 8px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2e7d32;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.thanks-message {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-details {
    margin-bottom: 1.5rem;
}

.service-confirmation {
    font-size: 1rem;
    color: #2c3e50;
    background-color: #e8f5e9;
    padding: 1rem;
    border-radius: 4px;
}

.next-steps {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #2e7d32;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #1a2332;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #0f1823;
}

.about-page,
.services-page,
.contact-page {
    min-height: 60vh;
}

.about-hero {
    background-color: #2a3a2a;
    color: #ffffff;
    padding: 4rem 4rem;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e6ed;
}

.about-story {
    padding: 4rem 4rem;
}

.story-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #1a2332;
}

.story-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

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

.methodology-section {
    padding: 4rem 4rem;
    background-color: #f8f9fa;
}

.methodology-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a2332;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.method-item {
    background-color: #ffffff;
    padding: 2rem;
    border-left: 4px solid #2e7d32;
}

.method-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
}

.method-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a6c7d;
}

.values-section {
    padding: 4rem 4rem;
}

.values-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a2332;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    background-color: #f0f4f8;
    padding: 2rem;
    border-radius: 4px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e50;
}

.team-section {
    padding: 4rem 4rem;
    background-color: #e8f5e9;
}

.team-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.team-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2c3e50;
}

.cta-section {
    padding: 4rem 4rem;
    background-color: #1a2332;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e6ed;
}

.services-intro {
    padding: 4rem 4rem 2rem;
    text-align: center;
}

.services-intro h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.services-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #5a6c7d;
}

.services-detailed {
    padding: 2rem 0;
}

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 3rem 4rem;
    border-bottom: 1px solid #e0e6ed;
}

.service-detail.reverse {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

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

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 1.25rem;
}

.service-detail-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e50;
}

.btn-select-large {
    padding: 1rem 2rem;
    background-color: #2e7d32;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-select-large:hover {
    background-color: #1b5e20;
}

.service-process {
    padding: 4rem 4rem;
    background-color: #f0f4f8;
}

.service-process h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a2332;
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2e7d32;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a6c7d;
}

.services-cta {
    padding: 4rem 4rem;
    text-align: center;
}

.cta-box {
    background-color: #e8f5e9;
    padding: 3rem;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-header {
    padding: 4rem 4rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.contact-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #5a6c7d;
}

.contact-details-section {
    padding: 3rem 4rem;
}

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

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

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2e7d32;
}

.info-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e50;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.hours-note {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-top: 0.75rem;
}

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

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

.contact-guidance {
    padding: 3rem 4rem;
    background-color: #f0f4f8;
}

.contact-guidance h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a2332;
}

.guidance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.guidance-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 4px;
}

.guidance-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
}

.guidance-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a6c7d;
}

.contact-cta {
    padding: 4rem 4rem;
    text-align: center;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.last-updated {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #2e7d32;
}

.legal-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e50;
}

.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .intro-columns,
    .dual-image-layout,
    .story-layout,
    .contact-layout {
        flex-direction: column;
    }

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

    .hero-overlay h2 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .magazine-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .services-grid-magazine {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}