* {
    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-notice {
    background-color: #fef3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #1a1a2e;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 550px;
    padding: 60px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.hero-content-left {
    flex: 1;
    padding-right: 40px;
    color: #ffffff;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #f39c12;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-left: -80px;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.trust-block {
    padding: 50px 5%;
    background-color: #ecf0f1;
}

.trust-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-left: 5px solid #f39c12;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.trust-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.trust-card p {
    font-size: 17px;
    color: #34495e;
}

.services-showcase {
    padding: 80px 5%;
    background-color: #ffffff;
}

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

.section-header-offset h2 {
    font-size: 38px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.section-header-offset p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-card.large {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
}

.service-card.medium {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}

.service-card.small {
    flex: 1 1 calc(25% - 22.5px);
    min-width: 250px;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px 20px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 15px 20px;
    color: #7f8c8d;
    flex-grow: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 20px 15px 20px;
}

.select-service {
    margin: 0 20px 20px 20px;
    padding: 12px 20px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-diagonal {
    padding: 70px 5%;
    background: linear-gradient(to right, #f8f9fa 0%, #e9ecef 100%);
    transform: skewY(-2deg);
    margin: 60px 0;
}

.testimonials-diagonal h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    transform: skewY(2deg);
    color: #2c3e50;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    transform: skewY(2deg);
}

.testimonial {
    flex: 1 1 300px;
    max-width: 400px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.testimonial .author {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
}

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

.form-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-intro {
    font-size: 16px;
    margin-bottom: 30px;
    color: #7f8c8d;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 40px 5%;
    background-color: #fff3cd;
    border-top: 2px solid #ffc107;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #856404;
    text-align: center;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a1a2e;
    color: #ecf0f1;
    padding: 50px 5% 20px 5%;
}

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

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

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 20px 5%;
    box-shadow: 0 -3px 15px 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;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    color: #ecf0f1;
    font-size: 14px;
    flex: 1 1 300px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 5%;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
}

.about-content,
.services-detail,
.contact-content,
.legal-content {
    padding: 60px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.about-main h2,
.services-detail h2,
.contact-info h2,
.legal-text h2 {
    font-size: 32px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.about-main h3,
.legal-text h3 {
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.about-main p,
.services-detail p,
.contact-block p,
.legal-text p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #34495e;
    line-height: 1.7;
}

.features-list,
.legal-text ul {
    margin: 20px 0 20px 30px;
}

.features-list li,
.legal-text ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #34495e;
}

.service-detail-item {
    margin-bottom: 45px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ecf0f1;
}

.service-detail-item:last-child {
    border-bottom: none;
}

.price-info {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 15px;
}

.contact-block {
    margin-bottom: 35px;
}

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

.email-display {
    color: #34495e;
    font-weight: 600;
}

.cta-section {
    padding: 60px 5%;
    background-color: #ecf0f1;
    text-align: center;
}

.cta-section h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #7f8c8d;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #f39c12;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.thanks-section {
    padding: 80px 5%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.thanks-message {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 25px;
}

.service-confirmation {
    margin: 25px 0;
}

.selected-service {
    font-size: 17px;
    color: #2c3e50;
    background-color: #d5f4e6;
    padding: 15px;
    border-radius: 6px;
    display: inline-block;
}

.next-steps {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

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

    .hero-content-left {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero-image-right {
        margin-left: 0;
    }

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

    .section-header-offset {
        margin-left: 0;
    }

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

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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