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

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

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    border-bottom: 1px solid #ffc107;
}

.nav-floating {
    position: fixed;
    top: 50px;
    right: 40px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: #27ae60;
    color: white;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    align-items: center;
    background: #f8f9fa;
    position: relative;
}

.hero-content-left {
    width: 45%;
    padding: 80px 60px;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image-right {
    width: 55%;
    height: 85vh;
    position: absolute;
    right: 0;
    top: 0;
    background: #e0e0e0;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.intro-offset {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 60px;
    background: white;
}

.intro-block {
    flex: 1.2;
}

.intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-block p {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #555;
}

.intro-visual {
    flex: 1;
    background: #dfe6e9;
}

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

.services-cards {
    padding: 120px 60px;
    background: #ecf0f1;
}

.section-title-offset {
    font-size: 3rem;
    margin-bottom: 70px;
    color: #1a1a1a;
    margin-left: 15%;
}

.cards-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px 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 8px 25px rgba(0, 0, 0, 0.12);
}

.card-large {
    width: calc(55% - 15px);
}

.card-medium {
    width: calc(45% - 15px);
}

.card-small {
    width: calc(40% - 15px);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #bdc3c7;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.card-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.btn-select-service {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.contact-form-section {
    padding: 100px 60px;
    background: white;
}

.form-wrapper-asymmetric {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro {
    flex: 0.8;
    padding-top: 20px;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
}

.contact-form {
    flex: 1.2;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.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 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    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: #27ae60;
}

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

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

.trust-section {
    padding: 80px 60px;
    background: #2c3e50;
    color: white;
}

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

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.trust-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.trust-content a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.trust-content a:hover {
    text-decoration: underline;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

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

.footer-block {
    flex: 1;
}

.footer-block h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #27ae60;
}

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

.footer-block ul li {
    margin-bottom: 12px;
}

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

.footer-block ul li a:hover {
    color: #27ae60;
}

.footer-references {
    margin-bottom: 40px;
    padding: 30px;
    background: #2c3e50;
    border-radius: 8px;
}

.footer-references h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #27ae60;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-references ol li a {
    color: #3498db;
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    margin-bottom: 40px;
    padding: 25px;
    background: #34495e;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 25px;
    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;
    gap: 30px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-reject {
    background: #7f8c8d;
    color: white;
}

.btn-cookie-reject:hover {
    background: #6c7a7b;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: #ecf0f1;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.thanks-content .selected-service {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-weight: 600;
    color: #2c3e50;
}

.about-page {
    padding: 100px 60px;
    background: white;
}

.about-hero {
    max-width: 1200px;
    margin: 0 auto 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.about-hero p {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
    align-items: flex-start;
}

.about-text {
    flex: 1.5;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background: #dfe6e9;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.services-page {
    padding: 100px 60px;
    background: #f8f9fa;
}

.services-header {
    max-width: 1200px;
    margin: 0 auto 80px;
    text-align: center;
}

.services-header h1 {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.services-header p {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.contact-page {
    padding: 100px 60px;
    background: white;
}

.contact-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-header h1 {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

.contact-info-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item h3 {
    font-size: 1.3rem;
    color: #27ae60;
    margin-bottom: 12px;
}

.contact-info-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

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

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

.legal-content h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

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

.legal-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

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

    .hero-content-left {
        width: 100%;
        padding: 60px 40px;
    }

    .hero-image-right {
        width: 100%;
        height: 50vh;
        position: relative;
    }

    .intro-offset {
        flex-direction: column;
    }

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

    .card-large,
    .card-medium,
    .card-small {
        width: 100%;
    }

    .form-wrapper-asymmetric {
        flex-direction: column;
    }

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

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

    .nav-floating {
        top: 20px;
        right: 20px;
        flex-direction: row;
        align-items: center;
    }

    .nav-links {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .section-title-offset {
        font-size: 2.2rem;
        margin-left: 0;
        text-align: center;
    }

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

    .nav-floating {
        flex-direction: column;
        padding: 10px 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 8px;
    }
}