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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.nav-ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background: #ecf0f1;
    border-radius: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 4rem;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 550px;
    margin-left: 5%;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.hero-visual-overlap {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 55%;
    transform: rotate(3deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
    background: #ecf0f1;
}

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

.intro-diagonal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin-top: -3rem;
    margin-bottom: -3rem;
}

.intro-block-left {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.intro-block-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.intro-block-right {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 10%;
}

.intro-block-right p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.services-staggered {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading-offset {
    font-size: 3rem;
    margin-bottom: 4rem;
    margin-left: 15%;
    color: #2c3e50;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.service-left {
    margin-left: 5%;
    margin-right: 15%;
}

.service-right {
    margin-left: 15%;
    margin-right: 5%;
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
    background: #ecf0f1;
}

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

.service-info {
    flex: 1;
    padding: 2.5rem;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.8rem 2rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.testimonials-overlap {
    padding: 6rem 2rem;
    background: #f8f9fa;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.testimonial-block {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 350px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: rotate(-1deg);
}

.testimonial-block:nth-child(2) {
    transform: rotate(2deg) translateY(20px);
}

.testimonial-block:nth-child(3) {
    transform: rotate(-2deg) translateY(-10px);
}

.testimonial-block blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-style: italic;
}

.testimonial-block cite {
    display: block;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
}

.why-us-diagonal {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: #fff;
    clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
}

.why-us-diagonal h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.why-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.why-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.why-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.why-item p {
    line-height: 1.6;
}

.form-section-offset {
    padding: 8rem 2rem;
    background: linear-gradient(120deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    margin-left: 20%;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-description {
    margin-bottom: 2rem;
    color: #555;
}

.selected-service-notice {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    border-left: 4px solid #3498db;
}

.selected-service-notice.active {
    background: #d4edda;
    border-left-color: #27ae60;
}

#selectedServiceText {
    font-weight: 600;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #fff;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #7f8c8d;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.thanks-service {
    background: rgba(255,255,255,0.2);
    padding: 1rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.btn-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.legal-page {
    padding: 120px 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-page {
    padding: 120px 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-info-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-card p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
}

.email-display {
    color: #3498db;
    font-weight: 600;
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual-overlap {
        position: relative;
        right: 0;
        width: 100%;
        margin-top: 3rem;
        transform: none;
    }

    .service-card {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .service-left,
    .service-right {
        margin-left: 0;
        margin-right: 0;
        flex-direction: column;
    }

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

    .form-container {
        margin-left: auto;
    }

    .nav-floating {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
}
