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

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

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #d4a574;
    color: #1a1a1a;
}

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

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

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

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

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 5%;
    background-color: #f8f8f8;
    font-size: 0.8rem;
}

.ad-label {
    color: #666;
    font-style: italic;
}

.brand-mark {
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

.magazine-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 5%;
}

.magazine-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.magazine-nav a:hover,
.magazine-nav a.nav-active {
    color: #d4a574;
}

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

.hero-editorial {
    position: relative;
    margin-bottom: 4rem;
}

.hero-grid {
    position: relative;
}

.hero-main {
    position: relative;
    height: 600px;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    max-width: 650px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 300;
}

.intro-columns {
    display: flex;
    gap: 4rem;
    padding: 4rem 5%;
    margin-bottom: 3rem;
}

.intro-left {
    flex: 2;
}

.intro-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.intro-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background-color: #f8f8f8;
    padding: 2rem;
    border-left: 4px solid #d4a574;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a4a4a;
}

.services-magazine {
    padding: 5rem 5%;
    background-color: #fafafa;
}

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

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5a5a5a;
    font-style: italic;
}

.services-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background-color: #ffffff;
    overflow: hidden;
}

.service-featured {
    display: flex;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-featured .service-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.service-featured .service-content {
    flex: 1;
    padding: 3rem;
}

.service-row {
    display: flex;
    gap: 2rem;
}

.service-compact {
    flex: 1;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-compact .service-image {
    height: 220px;
    background-color: #e8e8e8;
}

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

.service-compact .service-content {
    padding: 2rem;
}

.service-wide {
    box-shadow: 0 3px 15px rgba(0,0,0,0.07);
}

.service-columns {
    display: flex;
}

.service-columns .service-image {
    flex: 1.2;
    background-color: #e8e8e8;
}

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

.service-columns .service-content {
    flex: 1;
    padding: 3rem;
}

.service-grid-bottom {
    display: flex;
    gap: 2.5rem;
}

.service-grid-bottom .service-card {
    flex: 1;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-grid-bottom .service-image {
    height: 250px;
    background-color: #e8e8e8;
}

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

.service-grid-bottom .service-content {
    padding: 2rem;
}

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

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

.service-select {
    padding: 0.9rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-select:hover {
    background-color: #d4a574;
    color: #1a1a1a;
}

.insight-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.insight-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    line-height: 1.8;
    color: #3a3a3a;
}

.testimonials-editorial {
    padding: 5rem 5%;
    background-color: #f4f4f4;
}

.testimonials-editorial h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.testimonial-columns {
    display: flex;
    gap: 2.5rem;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 5px solid #d4a574;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.testimonial cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #666;
    font-weight: 600;
}

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

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

.form-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

.selected-service {
    background-color: #f8f8f8;
    padding: 1.2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #d4a574;
}

.selected-label {
    font-weight: 600;
    margin-right: 0.5rem;
    color: #2c2c2c;
}

#selected-service-name {
    color: #1a1a1a;
    font-weight: 500;
}

#selected-service-price {
    color: #d4a574;
    font-weight: 700;
    margin-left: 1rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.magazine-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 4rem 5% 2rem;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.footer-disclaimer {
    background-color: rgba(255,255,255,0.05);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 3px solid #d4a574;
}

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

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

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

.page-header {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 4rem 5%;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #d4a574;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    margin-top: 2rem;
    color: #2c2c2c;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #3a3a3a;
}

.contact-info-box {
    background-color: #f8f8f8;
    padding: 2rem;
    border-left: 4px solid #d4a574;
    margin-bottom: 2rem;
}

.contact-info-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-info-box p {
    margin-bottom: 0.8rem;
}

.contact-email {
    color: #2c2c2c;
    font-weight: 600;
}

.thanks-container {
    max-width: 700px;
    margin: 5rem auto;
    padding: 4rem;
    background-color: #f8f8f8;
    text-align: center;
    border-top: 5px solid #d4a574;
}

.thanks-icon {
    font-size: 4rem;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

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

.thanks-container p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.thanks-service-info {
    background-color: #ffffff;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #2c2c2c;
}

.thanks-service-info strong {
    color: #2c2c2c;
}

.btn-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #d4a574;
    color: #1a1a1a;
}

@media (max-width: 1024px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .intro-columns,
    .insight-wrapper {
        flex-direction: column;
    }

    .service-row,
    .service-columns,
    .service-grid-bottom,
    .testimonial-columns,
    .footer-columns {
        flex-direction: column;
    }

    .service-featured {
        flex-direction: column;
    }
}

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

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

    .hero-lead {
        font-size: 1.1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}