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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

.nav-links a:hover {
    color: #7f8c8d;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 8% 80px 10%;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #7f8c8d;
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.hero-image-overlap {
    flex: 1;
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -10%;
}

.philosophy-section {
    padding: 120px 5% 100px;
    background: #ffffff;
}

.philosophy-block {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.text-column-narrow {
    flex: 1;
    max-width: 560px;
}

.text-column-narrow h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

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

.image-float-right {
    flex: 1;
}

.image-float-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.services-intro {
    padding: 100px 5%;
    background: #f8f9fa;
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 5%;
}

.label-accent {
    display: inline-block;
    padding: 6px 16px;
    background: #2c3e50;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header-offset h2 {
    font-size: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.service-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 320px;
}

.service-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
}

.service-small {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}

.service-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

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

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

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

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.btn-service-select {
    padding: 12px 24px;
    background: #ecf0f1;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

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

.contact-form-section {
    padding: 100px 5%;
    background: #ffffff;
}

.form-container-offset {
    max-width: 680px;
    margin: 0 auto 0 15%;
}

.form-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.form-intro {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.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;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 38px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.approach-section {
    padding: 100px 5%;
    background: #2c3e50;
    color: #ffffff;
}

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

.approach-content h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.approach-steps {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.step-item {
    flex: 1;
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

.main-footer {
    background: #1a252f;
    color: #ffffff;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-tagline {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 40px auto;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 0.95rem;
}

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

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

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

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

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 5%;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin-bottom: 15px;
}

.btn-back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-back-home:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-header {
    padding: 80px 5% 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
}

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

.page-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin: 40px 0 20px;
    font-weight: 700;
}

.page-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 30px 0 15px;
    font-weight: 600;
}

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

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.page-content li {
    margin-bottom: 10px;
    color: #555;
}

.contact-info-section {
    padding: 80px 5%;
    background: #f8f9fa;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
}

.about-hero {
    padding: 100px 5%;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

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

.about-intro h1 {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-intro p {
    font-size: 1.3rem;
    color: #7f8c8d;
    line-height: 1.8;
}

.about-content {
    padding: 80px 5%;
}

.about-section {
    max-width: 1100px;
    margin: 0 auto 80px;
}

.about-section h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.services-page-header {
    padding: 80px 5%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.services-page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-align: center;
}

.services-page-header p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
}

.services-list-section {
    padding: 80px 5%;
}

.service-detail {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

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

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

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

.service-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.service-detail-cta {
    display: inline-block;
    padding: 14px 32px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.service-detail-cta:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-detail-image {
    flex: 0 0 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e9ecef;
}

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

    .hero-image-overlap {
        clip-path: none;
        margin-left: 0;
        min-height: 400px;
    }

    .philosophy-block {
        flex-direction: column;
    }

    .approach-steps {
        flex-direction: column;
    }

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

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

    .service-detail,
    .service-detail:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: block;
    }

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

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

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

    .form-container-offset {
        margin: 0 auto;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

    .about-intro h1 {
        font-size: 2.2rem;
    }
}