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

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

.hidden {
    display: none;
}

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

.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;
    font-family: 'Arial', sans-serif;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-cookie-accept {
    background: #4a90e2;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #357abd;
}

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

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

.ad-disclosure {
    background: #fffbea;
    border-bottom: 1px solid #e6d89e;
    padding: 8px 0;
    text-align: center;
}

.ad-label {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: #7a6a3a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.logo-section {
    flex: 1;
    min-width: 250px;
}

.site-logo {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
    font-family: 'Georgia', serif;
    margin-bottom: 4px;
}

.tagline {
    font-size: 13px;
    color: #666;
    font-family: 'Arial', sans-serif;
    font-style: italic;
}

.main-nav {
    flex: 1;
    min-width: 300px;
}

.nav-columns {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-end;
}

.nav-columns li a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.nav-columns li a:hover {
    color: #4a90e2;
    border-bottom-color: #4a90e2;
}

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

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
}

.hero-text-block {
    max-width: 800px;
    padding: 40px;
    background: rgba(255,255,255,0.95);
    border-left: 6px solid #4a90e2;
}

.hero-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.hero-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.content-grid {
    display: flex;
    gap: 40px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

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

.article-block {
    margin-bottom: 40px;
}

.article-block h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2c2c2c;
    line-height: 1.3;
}

.article-block p {
    font-size: 17px;
    margin-bottom: 16px;
    text-align: justify;
}

.image-insert {
    margin: 50px 0;
    background-color: #f5f5f5;
}

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

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

.sidebar-box {
    background: #f9f9f9;
    padding: 24px;
    margin-bottom: 30px;
    border-left: 4px solid #4a90e2;
}

.sidebar-box h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.services-list-compact {
    list-style: none;
    margin-bottom: 20px;
}

.services-list-compact li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    color: #555;
}

.btn-sidebar,
.btn-sidebar-secondary {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-sidebar {
    background: #4a90e2;
    color: #ffffff;
}

.btn-sidebar:hover {
    background: #357abd;
}

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

.btn-sidebar-secondary:hover {
    background: #4a90e2;
    color: #ffffff;
}

.full-width-section {
    padding: 70px 20px;
    margin: 60px 0;
}

.dark-section {
    background: #2c2c2c;
    color: #ffffff;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-centered {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #ffffff;
}

.three-column-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: #ffffff;
    color: #2c2c2c;
    overflow: hidden;
    border-radius: 4px;
}

.feature-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background-color: #f0f0f0;
}

.feature-card h4 {
    font-size: 20px;
    margin: 20px 20px 12px 20px;
    color: #2c2c2c;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 20px 20px 20px;
    color: #555;
}

.testimonial-section {
    padding: 60px 20px;
    background: #f0f4f8;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: #2c2c2c;
    border-left: 5px solid #4a90e2;
    padding-left: 30px;
}

.testimonial-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.services-overview-section {
    padding: 70px 20px;
}

.section-header-offset {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.section-header-offset h3 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.section-intro {
    font-size: 18px;
    color: #666;
}

.services-grid-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 30px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c2c2c;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    flex-grow: 1;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-select-service:hover {
    background: #357abd;
}

.form-section {
    padding: 70px 20px;
    background: #f9f9f9;
}

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

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

.form-header h3 {
    font-size: 32px;
    margin-bottom: 14px;
    color: #2c2c2c;
}

.form-header p {
    font-size: 16px;
    color: #666;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-submit:hover {
    background: #357abd;
}

.disclaimer-section {
    padding: 40px 20px;
    background: #fffbea;
    border-top: 2px solid #e6d89e;
}

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

.disclaimer-content p {
    font-size: 13px;
    line-height: 1.6;
    color: #5a4a2a;
    font-family: 'Arial', sans-serif;
}

.footer-magazine {
    background: #1a1a1a;
    color: #ffffff;
    padding: 50px 20px 20px 20px;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.footer-col p,
.footer-col ul {
    font-size: 14px;
    line-height: 1.8;
    color: #cccccc;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
    font-family: 'Arial', sans-serif;
}

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

    .nav-columns {
        justify-content: flex-start;
    }

    .hero-text-block {
        padding: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

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

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

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

    .contact-form {
        padding: 24px;
    }
}