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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

.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-buttons {
    display: flex;
    gap: 15px;
}

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

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.main-header {
    background: #1a1a1a;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s;
}

.main-nav a:hover {
    opacity: 0.7;
}

.ad-notice {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 3px;
}

.hero-magazine {
    background: #f8f8f8;
    padding: 80px 30px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #444;
}

.hero-right {
    flex: 1;
    background: #e0e0e0;
}

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

.cta-primary {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #333;
}

.magazine-intro {
    padding: 100px 30px;
    background: white;
}

.mag-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.mag-col-left {
    flex: 1.5;
}

.mag-col-left h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.mag-col-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
}

.mag-col-right {
    flex: 1;
    background: #fafafa;
}

.mag-col-right img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
    object-fit: cover;
}

.mag-quote {
    font-size: 22px;
    font-style: italic;
    padding: 30px;
    border-left: 4px solid #1a1a1a;
    background: white;
    line-height: 1.6;
}

.services-grid {
    padding: 100px 30px;
    background: #f5f5f5;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-header p {
    font-size: 19px;
    color: #555;
}

.services-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    min-width: 320px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background: #ddd;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    font-weight: 700;
}

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

.service-price {
    padding: 0 25px;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #333;
}

.service-card.selected {
    border: 3px solid #4CAF50;
}

.contact-form-section {
    padding: 100px 30px;
    background: white;
}

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

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

.form-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: #555;
}

.form-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-notice.show {
    display: block;
}

.form-notice.success {
    background: #d4edda;
    border-color: #4CAF50;
}

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

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

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

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

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

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

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.trust-section {
    padding: 100px 30px;
    background: #1a1a1a;
    color: white;
}

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

.trust-container h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.trust-cols {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #aaa;
}

.main-footer {
    background: #0d0d0d;
    color: #999;
    padding: 60px 30px 30px;
}

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

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

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

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

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

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

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #777;
}

.page-header {
    background: #1a1a1a;
    color: white;
    padding: 80px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.page-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 30px;
}

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

.page-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.page-content ul,
.page-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.thanks-service {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 18px;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .mag-container {
        flex-direction: column;
        gap: 40px;
    }

    .services-cards {
        flex-direction: column;
    }

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

    .trust-cols {
        flex-direction: column;
    }

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

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