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

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

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

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

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.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;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

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

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

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

.btn-reject:hover {
    background: #626d6e;
}

.main-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrap {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-lead {
    font-size: 20px;
    max-width: 600px;
    line-height: 1.5;
}

.intro-columns {
    padding: 60px 0;
    background: #f8f9fa;
}

.col-layout-3 {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.col h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.col p {
    color: #5a6c7d;
    line-height: 1.7;
}

.featured-review {
    padding: 80px 0;
}

.review-split {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.review-text {
    flex: 1;
    min-width: 400px;
}

.label-tag {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 3px;
}

.review-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.review-text p {
    margin-bottom: 16px;
    color: #5a6c7d;
    font-size: 17px;
    line-height: 1.7;
}

.link-arrow {
    display: inline-block;
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
}

.link-arrow:hover {
    text-decoration: underline;
}

.review-image {
    flex: 1;
    min-width: 400px;
    background-color: #95a5a6;
}

.review-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.services-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header-offset {
    margin-bottom: 50px;
}

.section-header-offset h2 {
    font-size: 40px;
    margin-bottom: 12px;
}

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

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

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background-color: #95a5a6;
}

.card-large {
    flex: 1 1 calc(66.666% - 15px);
}

.card-large img {
    height: 300px;
}

.card-wide {
    flex: 1 1 calc(50% - 15px);
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-content p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
}

.order-form-section {
    padding: 80px 0;
    background: #fff;
}

.order-form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 40px;
    font-size: 17px;
}

.order-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonials-section {
    padding: 80px 0;
    background: #ecf0f1;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 14px;
}

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

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 16px;
    color: #fff;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

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

.disclaimer {
    font-size: 12px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-content {
    padding: 60px 0;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.about-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 17px;
}

.about-image {
    margin: 40px 0;
    background-color: #95a5a6;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-block p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    background-color: #95a5a6;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-page p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 16px;
}

.legal-page ul li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 8px;
}

.thanks-page {
    padding: 100px 0;
    text-align: center;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-page p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.thanks-page .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-page .btn-home:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

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

    .col-layout-3 {
        flex-direction: column;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

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