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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.header-right {
    display: flex;
    gap: 30px;
}

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

.header-right a:hover {
    color: #3498db;
}

.hero-magazine {
    padding: 60px 5%;
    background: #f8f9fa;
}

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

.hero-text-col {
    flex: 1;
}

.hero-text-col h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-lead {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 35px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #2980b9;
}

.hero-image-col {
    flex: 1;
    background: #e9ecef;
}

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

.intro-magazine {
    padding: 80px 5%;
    background: #ffffff;
}

.intro-columns {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-col-narrow {
    flex: 0 0 320px;
}

.intro-col-narrow h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #2c3e50;
}

.intro-col-wide {
    flex: 1;
}

.intro-col-wide p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.visual-break {
    padding: 0;
}

.visual-break-inner {
    position: relative;
    height: 500px;
    background: #2c3e50;
    overflow: hidden;
}

.visual-break-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.visual-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.visual-overlay h3 {
    font-size: 42px;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.services-magazine {
    padding: 80px 5%;
    background: #f8f9fa;
}

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

.services-header-centered h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

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

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

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

.service-image {
    width: 100%;
    height: 220px;
    background: #e9ecef;
    overflow: hidden;
}

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

.service-content {
    padding: 25px;
}

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

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

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

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.form-section {
    padding: 80px 5%;
    background: #ffffff;
}

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

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

.form-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-header p {
    font-size: 17px;
    color: #555;
}

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

.form-selected-service {
    margin-bottom: 30px;
    padding: 15px;
    background: #e7f3ff;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

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

.form-selected-service input {
    width: 100%;
    padding: 10px;
    border: none;
    background: #ffffff;
    font-size: 16px;
    font-weight: 600;
    color: #3498db;
    border-radius: 4px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

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

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

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

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 14px;
    font-weight: 400;
}

.form-checkbox a {
    color: #3498db;
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-section {
    padding: 80px 5%;
    background: #2c3e50;
    color: #ffffff;
}

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

.trust-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
}

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

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

.footer-col a:hover {
    color: #ffffff;
}

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

.disclaimer {
    margin-top: 15px;
    font-size: 12px;
    color: #95a5a6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

.btn-cookie-reject:hover {
    background: #6c7a7b;
}

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

    .intro-columns {
        flex-direction: column;
        gap: 30px;
    }

    .intro-col-narrow {
        flex: 1;
    }

    .service-card {
        flex: 0 0 calc(50% - 15px);
    }

    .trust-columns {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .header-right {
        gap: 20px;
    }

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

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}