* {
    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-color: #ffffff;
}

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

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

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

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

.header-main {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

.hero-magazine {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.hero-content-magazine {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.hero-image-col img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1a1a1a;
}

.lead-text {
    font-size: 20px;
    color: #495057;
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    display: inline-block;
    background-color: #6c757d;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.section-intro {
    padding: 70px 0;
    background-color: #ffffff;
}

.section-intro h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.section-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.section-benefits-magazine {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.magazine-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.magazine-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e9ecef;
}

.magazine-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px 20px;
    color: #1a1a1a;
}

.magazine-card p {
    padding: 0 20px 20px 20px;
    color: #495057;
    font-size: 16px;
}

.section-services {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-services h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
}

.services-list-magazine {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    gap: 40px;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-text p {
    margin-bottom: 15px;
    color: #495057;
}

.service-features {
    list-style: none;
    margin-top: 15px;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    color: #495057;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 180px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #007bff;
}

.btn-service {
    background-color: #28a745;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

.btn-service:hover {
    background-color: #218838;
}

.section-form {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-form h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-form > .container-narrow > p {
    text-align: center;
    margin-bottom: 40px;
    color: #495057;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

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

.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 #ced4da;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background-color: #007bff;
    color: #ffffff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #0056b3;
}

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

.section-testimonials h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.testimonial-card p {
    font-style: italic;
    color: #495057;
    margin-bottom: 15px;
}

.testimonial-card strong {
    color: #2c3e50;
}

.section-disclaimer {
    padding: 50px 0;
    background-color: #fff3cd;
    border-top: 1px solid #ffc107;
    border-bottom: 1px solid #ffc107;
}

.disclaimer-text {
    font-size: 14px;
    color: #856404;
    text-align: center;
    line-height: 1.8;
}

.footer-main {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 0 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-cookie-accept {
    background-color: #28a745;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

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

.page-header {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.page-header h1 {
    font-size: 44px;
}

.section-about-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #495057;
}

.section-values {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-values h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #007bff;
}

.value-item p {
    color: #495057;
}

.section-team {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-team h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-team > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 17px;
    color: #495057;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.section-approach {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-approach h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-approach > p {
    margin-bottom: 30px;
    color: #495057;
}

.approach-list {
    list-style: none;
    counter-reset: approach-counter;
}

.approach-list li {
    counter-increment: approach-counter;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    color: #495057;
}

.approach-list li:before {
    content: counter(approach-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #007bff;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.section-services-full {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 20px;
    color: #495057;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-details-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-details-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #495057;
}

.service-details-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #007bff;
}

.section-faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-faq h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.faq-item p {
    color: #495057;
}

.section-contact-info {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #007bff;
}

.contact-item p {
    color: #495057;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.section-contact-additional {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-contact-additional h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-contact-additional p {
    margin-bottom: 15px;
    color: #495057;
    font-size: 17px;
}

.section-thanks {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #28a745;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #495057;
}

.thanks-details {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-steps {
    list-style: none;
    counter-reset: thanks-counter;
}

.thanks-steps li {
    counter-increment: thanks-counter;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    color: #495057;
}

.thanks-steps li:before {
    content: counter(thanks-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #28a745;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.thanks-selected-service {
    background-color: #e7f3ff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 18px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 15px;
    color: #495057;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 10px;
    color: #495057;
}

.legal-content a {
    color: #007bff;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0056b3;
}

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

    .nav-links {
        gap: 15px;
    }

    h1 {
        font-size: 36px;
    }

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

    .service-item {
        flex-direction: column;
    }

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

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

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

    .service-detail-card {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

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