* {
    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: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    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;
}

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

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

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

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

.btn-reject {
    background: #f44336;
    color: white;
}

.btn-reject:hover {
    background: #da190b;
}

.header-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 6%;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left .logo {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 3px;
}

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

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

.main-nav a:hover {
    color: #0066cc;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 60px 6%;
    gap: 60px;
    background: #fafafa;
}

.hero-text-block {
    flex: 1;
    max-width: 580px;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 28px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #444;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -80px;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
}

.intro-asymmetric {
    display: flex;
    gap: 80px;
    padding: 120px 6%;
    background: #ffffff;
}

.intro-left {
    flex: 0 0 40%;
}

.intro-left h2 {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-right p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.trust-section {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 100px 6%;
    background: #f9f9f9;
}

.trust-image {
    flex: 0 0 45%;
    background: #e8e8e8;
}

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

.trust-content {
    flex: 1;
}

.trust-content h3 {
    font-size: 34px;
    margin-bottom: 25px;
    font-weight: 700;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #444;
}

.services-cards-offset {
    padding: 120px 6%;
    background: #ffffff;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 70px;
    font-weight: 700;
    max-width: 600px;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    background: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card.card-large {
    flex: 1 1 calc(50% - 18px);
}

.service-card.card-wide {
    flex: 1 1 calc(66.666% - 24px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #e0e0e0;
}

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

.service-card p {
    padding: 0 25px 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    flex-grow: 1;
}

.service-card .price {
    padding: 0 25px;
    font-size: 28px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 20px;
}

.btn-select-service {
    margin: 0 25px 25px;
    padding: 14px 28px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #0052a3;
}

.btn-select-service.selected {
    background: #4CAF50;
}

.form-section-offset {
    display: flex;
    gap: 80px;
    padding: 120px 6%;
    background: #f5f5f5;
    align-items: flex-start;
}

.form-container-left {
    flex: 0 0 38%;
}

.form-container-left h2 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 700;
}

.form-container-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.form-container-right {
    flex: 1;
    background: #ffffff;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 40px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
}

.testimonials-stacked {
    padding: 100px 6%;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-stacked h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.testimonial-item {
    margin-bottom: 50px;
    padding: 40px;
    background: #fafafa;
    border-left: 4px solid #0066cc;
}

.testimonial-item p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #666;
}

.disclaimer-section {
    padding: 60px 6%;
    background: #f0f0f0;
}

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

.footer-asymmetric {
    background: #2c2c2c;
    color: #ffffff;
    padding: 60px 6% 30px;
}

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

.page-header {
    padding: 80px 6% 60px;
    background: #fafafa;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-content {
    padding: 80px 6%;
    max-width: 1100px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    font-weight: 700;
}

.page-content h3 {
    font-size: 24px;
    margin: 35px 0 20px;
    font-weight: 600;
}

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

.page-content ul {
    margin: 20px 0 20px 40px;
}

.page-content ul li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.7;
}

.contact-info-block {
    background: #fafafa;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
}

.contact-info-block h3 {
    margin-top: 0;
}

.contact-info-block p {
    margin-bottom: 15px;
}

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

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #4CAF50;
    font-weight: 800;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #444;
}

.btn-home {
    display: inline-block;
    padding: 16px 40px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-home:hover {
    background: #0052a3;
}

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

    .hero-image-offset {
        margin-top: 0;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

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

    .form-section-offset {
        flex-direction: column;
    }

    .footer-main {
        flex-wrap: wrap;
    }

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