* {
    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: #2c3e50;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.header-magazine {
    background-color: #ffffff;
    border-bottom: 3px solid #2c3e50;
    padding: 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    background-color: #ecf0f1;
    border-bottom: 1px solid #bdc3c7;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
}

.nav-primary {
    display: flex;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.brand-container {
    text-align: center;
    padding: 40px 20px 30px;
}

.brand-title {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.brand-tagline {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-style: italic;
}

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

.hero-magazine {
    margin: 60px 40px;
}

.hero-content-split {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.hero-text-column {
    flex: 1;
    padding: 60px 50px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-heading {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 32px;
    color: #34495e;
}

.hero-image-column {
    flex: 1;
    overflow: hidden;
    min-height: 500px;
}

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

.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

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

.btn-primary:hover {
    background-color: #34495e;
}

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

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

.intro-editorial {
    margin: 80px auto;
    display: flex;
    justify-content: center;
}

.editorial-column-narrow {
    max-width: 700px;
    padding: 0 40px;
}

.section-subheading {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 400;
}

.editorial-column-narrow p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #34495e;
}

.services-magazine-grid {
    background-color: #ffffff;
    padding: 80px 40px;
    margin: 60px 0;
}

.grid-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.grid-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 400;
}

.grid-header p {
    font-size: 1.15rem;
    color: #7f8c8d;
}

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

.service-card-magazine {
    flex: 1 1 calc(33.333% - 28px);
    min-width: 320px;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
}

.service-image-container {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-name {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 600;
}

.service-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #34495e;
    flex-grow: 1;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.btn-service-select {
    width: 100%;
    padding: 12px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-service-select:hover {
    background-color: #3498db;
}

.cta-magazine-inline {
    margin: 80px 40px;
    padding: 60px 40px;
    background-color: #ecf0f1;
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-centered h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 400;
}

.cta-content-centered p {
    font-size: 1.15rem;
    margin-bottom: 28px;
    color: #34495e;
}

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

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

.approach-text-wide {
    flex: 2;
}

.approach-text-wide h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 400;
}

.approach-text-wide p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #34495e;
}

.approach-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-box {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 32px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-section-magazine {
    padding: 80px 40px;
    background-color: #fafafa;
}

.form-container-centered {
    max-width: 700px;
    margin: 0 auto;
}

.form-container-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 400;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #7f8c8d;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #bdc3c7;
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    background-color: #3498db;
    color: #ffffff;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #ecf0f1;
}

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

.disclaimer-content p {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.7;
}

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

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #95a5a6;
}

@media (max-width: 968px) {
    .hero-content-split {
        flex-direction: column;
    }

    .approach-layout-asymmetric {
        flex-direction: column;
    }

    .service-card-magazine {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 640px) {
    .brand-title {
        font-size: 2rem;
    }

    .hero-heading {
        font-size: 1.8rem;
    }

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

    .header-top {
        flex-direction: column;
        gap: 12px;
    }

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