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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    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;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #229954;
}

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.site-logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a472a;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #27ae60;
}

.ad-disclosure {
    background-color: #fff3cd;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    color: #856404;
    border: 1px solid #ffeaa7;
}

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

.hero-editorial {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image-wrapper 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: 60px 40px;
}

.hero-text {
    max-width: 800px;
}

.hero-text h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    color: #ecf0f1;
    line-height: 1.6;
}

.intro-columns {
    padding: 60px 30px;
    background-color: #ffffff;
}

.magazine-grid {
    display: flex;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.main-column {
    flex: 2;
    min-width: 0;
}

.featured-content h3 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #1a472a;
}

.featured-content p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #34495e;
}

.inline-image-block {
    margin: 40px 0;
    background-color: #ecf0f1;
}

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

.sidebar-column {
    flex: 1;
    min-width: 280px;
}

.info-card {
    background-color: #f8f9fa;
    padding: 28px;
    margin-bottom: 24px;
    border-left: 4px solid #27ae60;
}

.info-card.dark {
    background-color: #2c3e50;
    color: #ffffff;
    border-left-color: #e74c3c;
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.services-preview {
    padding: 80px 30px;
    background-color: #f4f6f8;
}

.section-header-offset {
    max-width: 700px;
    margin-bottom: 50px;
}

.section-header-offset h3 {
    font-size: 38px;
    color: #1a472a;
    line-height: 1.3;
}

.services-magazine-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    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-card.featured {
    flex-direction: row;
}

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

.service-image {
    flex: 1;
    min-width: 400px;
    background-color: #bdc3c7;
}

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h4 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a472a;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 24px;
}

.service-price {
    margin: 20px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.cta-button {
    padding: 14px 32px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #229954;
}

.approach-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

.text-column {
    flex: 1;
}

.text-column h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a472a;
    line-height: 1.4;
}

.text-column p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 18px;
}

.image-column {
    flex: 1;
    background-color: #95a5a6;
}

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

.form-section {
    padding: 80px 30px;
    background-color: #ecf0f1;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.form-header h3 {
    font-size: 32px;
    color: #1a472a;
    margin-bottom: 12px;
}

.form-header p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    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: #27ae60;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    padding: 16px 48px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
    margin-top: 12px;
}

.submit-button:hover {
    background-color: #229954;
}

.disclaimer-section {
    padding: 50px 30px;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

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

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

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

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

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

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: #27ae60;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

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

    .two-column-layout {
        flex-direction: column;
    }

    .service-card,
    .service-card.featured,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        min-width: 100%;
        height: 300px;
    }

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-text h2 {
        font-size: 28px;
    }

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

    .featured-content h3 {
        font-size: 24px;
    }

    .section-header-offset h3 {
        font-size: 28px;
    }

    .service-content {
        padding: 24px;
    }

    .form-container {
        padding: 30px 20px;
    }

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