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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-img,
.section-img,
.card-img {
    object-fit: cover;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    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: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: #ffffff;
    color: #2c3e50;
}

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 90%;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background: #ecf0f1;
    border-radius: 12px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.asymmetric-layout {
    padding-top: 6rem;
}

.hero-offset {
    position: relative;
    margin-bottom: 4rem;
}

.hero-image-wrapper {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background: #34495e;
}

.hero-img {
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 600px;
    color: #ffffff;
    padding: 2rem;
    background: rgba(52, 73, 94, 0.7);
    backdrop-filter: blur(5px);
    border-left: 6px solid #3498db;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.4;
    opacity: 0.95;
}

.intro-asymmetric {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.intro-text-block {
    flex: 1.2;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.intro-text-block p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.intro-image-offset {
    flex: 0.8;
    background: #ecf0f1;
}

.intro-image-offset .section-img {
    width: 100%;
    height: 450px;
    transform: translateX(30px);
    box-shadow: -20px 20px 0 #3498db;
}

.services-preview-irregular {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.services-header-left {
    max-width: 600px;
    margin-bottom: 3rem;
    padding-left: 10%;
}

.services-header-left h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-header-left p {
    font-size: 1.125rem;
    color: #34495e;
}

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

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 2rem;
}

.card-offset-3 {
    margin-top: 4rem;
}

.card-offset-4 {
    margin-top: 1.5rem;
}

.card-offset-5 {
    margin-top: 3rem;
}

.card-img {
    width: 100%;
    height: 200px;
    background: #bdc3c7;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem;
    color: #34495e;
    flex: 1;
}

.price-tag {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #27ae60;
}

.cta-inline {
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.875rem 1.75rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-inline:hover {
    background: #2980b9;
}

.why-us-split {
    display: flex;
    align-items: stretch;
    max-width: 1600px;
    margin: 6rem auto;
    gap: 0;
}

.why-content {
    flex: 1;
    padding: 4rem;
    background: #2c3e50;
    color: #ffffff;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.feature-item p {
    font-size: 1.125rem;
    line-height: 1.6;
}

.why-image {
    flex: 1;
    background: #95a5a6;
}

.why-image .section-img {
    width: 100%;
    height: 100%;
}

.contact-form-irregular {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.form-header p {
    font-size: 1.125rem;
    color: #34495e;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #dfe6e9;
    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: #3498db;
}

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

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

.trust-section {
    padding: 4rem 2rem;
    background: #ecf0f1;
}

.trust-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.trust-content-center p {
    font-size: 1.25rem;
    color: #34495e;
    line-height: 1.7;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col-wide {
    flex: 1.5;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-col p {
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(52, 73, 94, 0.5);
    border-radius: 8px;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(236, 240, 241, 0.2);
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-wrap: wrap;
        border-radius: 20px;
        padding: 1rem;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-image-offset .section-img {
        transform: translateX(0);
        box-shadow: none;
    }

    .service-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .why-us-split {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

.services-page-layout {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.services-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

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

.services-hero p {
    font-size: 1.25rem;
    color: #34495e;
}

.services-detail-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0.8;
    background: #bdc3c7;
}

.service-detail-image img {
    width: 100%;
    height: 350px;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #34495e;
}

.service-detail-content .price-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.about-page-layout {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.about-hero {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-hero-content {
    flex: 1;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-hero-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #34495e;
}

.about-hero-image {
    flex: 1;
    background: #95a5a6;
}

.about-hero-image img {
    width: 100%;
    height: 450px;
}

.about-values {
    background: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem;
    margin-bottom: 4rem;
}

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

.about-values h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: rgba(52, 73, 94, 0.5);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #3498db;
}

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

.about-story {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-story p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.contact-page-layout {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

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

.contact-header p {
    font-size: 1.25rem;
    color: #34495e;
}

.contact-details-grid {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.info-item p {
    font-size: 1.125rem;
    color: #34495e;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: #bdc3c7;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.legal-page {
    padding-top: 8rem;
    padding-bottom: 4rem;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

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

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

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

.legal-page p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #34495e;
}

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

.legal-page ul li {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #34495e;
}

.thanks-page {
    padding-top: 8rem;
    padding-bottom: 4rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 0 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.thanks-content .btn-back {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-content .btn-back:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .service-detail,
    .service-detail:nth-child(even) {
        flex-direction: column;
    }

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

    .contact-details-grid {
        flex-direction: column;
    }
}