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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fafafa;
}

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-magazine {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #fff;
    border-bottom: 2px solid #e9ecef;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-center {
    display: flex;
    gap: 35px;
}

.nav-center a, .nav-right a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-center a:hover, .nav-right a:hover {
    color: #007bff;
}

.hero-magazine {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    max-width: 700px;
}

.content-magazine {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-intro {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.intro-col-left {
    flex: 1.2;
}

.intro-col-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
    line-height: 1.3;
}

.intro-col-left p {
    font-size: 17px;
    color: #495057;
}

.intro-col-right {
    flex: 1;
    background-color: #e9ecef;
}

.intro-col-right img {
    width: 100%;
    height: auto;
    display: block;
}

.section-story {
    margin-bottom: 70px;
}

.story-narrow {
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.story-narrow h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.story-narrow p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #495057;
}

.section-story img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #dee2e6;
}

.section-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.split-left {
    flex: 1;
}

.split-left h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.split-left p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #495057;
}

.split-right {
    flex: 1;
    background-color: #e9ecef;
}

.split-right img {
    width: 100%;
    height: auto;
    display: block;
}

.section-services-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-services-intro h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #1a252f;
}

.section-services-intro p {
    font-size: 17px;
    max-width: 800px;
    margin: 0 auto;
    color: #495057;
}

.services-magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 70px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    background: #fff;
    border: 1px solid #dee2e6;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a252f;
}

.service-card p {
    font-size: 15px;
    color: #6c757d;
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 15px;
}

.btn-service {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #0056b3;
}

.testimonial-inline {
    background: #f8f9fa;
    padding: 40px 60px;
    margin-bottom: 70px;
    border-left: 5px solid #007bff;
}

.testimonial-inline blockquote {
    font-size: 18px;
    font-style: italic;
    color: #495057;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-style: normal;
    color: #6c757d;
}

.section-insight {
    margin-bottom: 70px;
}

.section-insight h3 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #1a252f;
    text-align: center;
}

.insight-columns {
    display: flex;
    gap: 40px;
}

.insight-col {
    flex: 1;
    padding: 30px;
    background: #fff;
    border: 1px solid #dee2e6;
}

.insight-col p {
    font-size: 16px;
    color: #495057;
}

.cta-block-magazine {
    text-align: center;
    background: #1a252f;
    color: #fff;
    padding: 60px 40px;
    margin-bottom: 70px;
}

.cta-block-magazine h3 {
    font-size: 34px;
    margin-bottom: 15px;
}

.cta-block-magazine p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn-cta-main {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cta-main:hover {
    background: #0056b3;
}

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

.form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a252f;
}

.contact-form-magazine {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid #ced4da;
    background: #fff;
    font-family: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #007bff;
}

.btn-submit {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #218838;
}

.footer-magazine {
    background: #1a252f;
    color: #adb5bd;
    padding: 50px 5%;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background: #151e27;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 3px solid #007bff;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #343a40;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #212529;
    color: #fff;
    padding: 20px;
    display: none;
    z-index: 9999;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    font-size: 14px;
    flex: 1;
}

.cookie-content a {
    color: #007bff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}

.btn-accept {
    background: #28a745;
    color: #fff;
}

.btn-accept:hover {
    background: #218838;
}

.btn-reject {
    background: #6c757d;
    color: #fff;
}

.btn-reject:hover {
    background: #5a6268;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border: 1px solid #dee2e6;
}

.thanks-container h1 {
    font-size: 42px;
    color: #28a745;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-container .service-highlight {
    font-weight: 700;
    color: #007bff;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.thanks-container .btn-home:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .nav-magazine {
        flex-direction: column;
        gap: 15px;
    }

    .nav-center {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-intro {
        flex-direction: column;
    }

    .section-split {
        flex-direction: column;
    }

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

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

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

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

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