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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.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;
}

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

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

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

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

.btn-cookie.reject {
    background: #7f8c8d;
    color: white;
}

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

.header-top {
    background: #fff3cd;
    padding: 8px 0;
    text-align: center;
}

.ad-disclosure {
    font-size: 12px;
    color: #856404;
    font-weight: 600;
}

.main-header {
    background: #2c3e50;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo h1 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

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

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

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

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    max-width: 600px;
    background: rgba(44, 62, 80, 0.85);
    padding: 40px;
    color: white;
}

.hero-overlay h2 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 18px;
    line-height: 1.6;
}

.intro-section {
    padding: 80px 30px;
    background: white;
}

.container-magazine {
    max-width: 1200px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-columns {
    display: flex;
    gap: 60px;
}

.intro-main {
    flex: 2;
}

.intro-main h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-main p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

.intro-side {
    flex: 1;
}

.info-card {
    background: #ecf0f1;
    padding: 30px;
    border-left: 4px solid #3498db;
}

.info-card h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.info-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.featured-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.magazine-grid {
    display: flex;
    gap: 40px;
}

.featured-large {
    flex: 2;
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.article-content {
    padding: 40px;
}

.article-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.featured-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-item {
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.sidebar-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.sidebar-item h4 {
    padding: 20px;
    font-size: 20px;
    color: #2c3e50;
}

.sidebar-item p {
    padding: 0 20px 20px 20px;
    font-size: 15px;
    line-height: 1.6;
}

.services-preview {
    padding: 80px 30px;
    background: white;
}

.services-preview h3 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.services-columns {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.service-block {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
}

.service-block img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 20px;
}

.service-block h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-block p {
    font-size: 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-block .price {
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 15px;
    display: block;
}

.btn-select {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

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

.contact-form-section h3 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-form-section > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #7f8c8d;
}

.service-form {
    background: white;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #bdc3c7;
    font-family: inherit;
}

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

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

.btn-submit {
    background: #27ae60;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 17px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s ease;
}

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

.methodology {
    padding: 80px 30px;
    background: white;
}

.method-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.method-text {
    flex: 1;
}

.method-text h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.method-text p {
    font-size: 17px;
    margin-bottom: 18px;
    text-align: justify;
}

.method-visual {
    flex: 1;
}

.method-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-left: 4px solid #e74c3c;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

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

@media (max-width: 1024px) {
    .intro-columns,
    .magazine-grid,
    .services-columns,
    .method-layout {
        flex-direction: column;
    }

    .hero-overlay {
        left: 30px;
        right: 30px;
        bottom: 30px;
        max-width: none;
    }

    .main-nav ul {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}