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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    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;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

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

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

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

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

.nav-floating {
    position: fixed;
    top: 40px;
    right: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
}

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

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2c3e50;
}

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 60px 60px;
    gap: 60px;
    position: relative;
}

.hero-content-offset {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-left: 80px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #546e7a;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    margin-top: -50px;
    background-color: #ecf0f1;
    border-radius: 20px;
    overflow: hidden;
}

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

.intro-block {
    padding: 120px 60px;
    background-color: #f8f9fa;
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.intro-narrow h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #546e7a;
}

.services-asymmetric {
    padding: 140px 60px;
    background-color: #ffffff;
}

.section-header-offset {
    margin-left: 120px;
    margin-bottom: 80px;
}

.section-header-offset h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a252f;
    font-weight: 700;
}

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

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex-basis: calc(55% - 20px);
}

.card-offset {
    flex-basis: calc(40% - 20px);
    margin-top: 60px;
}

.card-small {
    flex-basis: calc(30% - 20px);
}

.card-wide {
    flex-basis: calc(65% - 20px);
    margin-top: -40px;
}

.card-elevated {
    flex-basis: calc(32% - 20px);
    margin-top: 40px;
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 20px;
    flex: 1;
}

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

.btn-service {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateX(5px);
}

.trust-section {
    padding: 100px 60px;
    background-color: #ecf0f1;
}

.trust-content-split {
    display: flex;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 700;
    line-height: 1.3;
}

.trust-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 25px;
}

.trust-image {
    flex: 0 0 400px;
    background-color: #bdc3c7;
    border-radius: 15px;
    overflow: hidden;
}

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

.form-section {
    padding: 120px 60px;
    background-color: #ffffff;
}

.form-container-centered {
    max-width: 700px;
    margin: 0 auto;
}

.form-container-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
    text-align: center;
    font-weight: 700;
}

.form-container-centered > p {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.disclaimer-section {
    padding: 60px;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #856404;
    font-weight: 700;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
}

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

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

.footer-column p {
    color: #bdc3c7;
    font-size: 15px;
}

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

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

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

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

.thanks-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #27ae60;
    font-weight: 700;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 25px;
}

.thanks-service {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.thanks-service strong {
    color: #2c3e50;
    font-size: 18px;
}

.contact-page {
    padding: 140px 60px 100px;
    min-height: 70vh;
}

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

.contact-content h1 {
    font-size: 52px;
    margin-bottom: 40px;
    color: #1a252f;
    font-weight: 700;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.contact-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

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

.contact-item p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
}

.legal-page {
    padding: 140px 60px 100px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a252f;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .nav-floating {
        top: 20px;
        right: 20px;
        left: 20px;
        padding: 15px 20px;
        gap: 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 120px 30px 60px;
    }

    .hero-content-offset {
        margin-left: 0;
    }

    .hero-title {
        font-size: 40px;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .card-large,
    .card-offset,
    .card-small,
    .card-wide,
    .card-elevated {
        flex-basis: 100%;
        margin-top: 0;
    }

    .trust-content-split {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

    .contact-page,
    .legal-page {
        padding: 100px 30px 60px;
    }
}