* {
    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: rgba(44, 62, 80, 0.98);
    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-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.cookie-btn.reject {
    background: #95a5a6;
    color: white;
}

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

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

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

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

.nav-link {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    border-left: 1px solid #bdc3c7;
    padding-left: 20px;
}

.asymmetric-layout {
    padding-top: 100px;
}

.hero-offset {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    padding: 80px 60px 80px 120px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 800;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 20px;
    color: #34495e;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

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

.hero-image-right {
    flex: 1.2;
    height: 90vh;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

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

.intro-overlap {
    margin-top: -120px;
    padding: 0 120px 80px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-card {
    flex: 1.5;
    background: white;
    padding: 60px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 3;
}

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-card p {
    font-size: 18px;
    color: #34495e;
}

.intro-stats-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background: #ecf0f1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #3498db;
}

.stat-label {
    font-size: 16px;
    color: #7f8c8d;
    margin-top: 5px;
}

.services-asymmetric {
    padding: 120px 80px;
    background: #f8f9fa;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 80px;
    padding-left: 40px;
}

.section-header-left h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    transition: all 0.4s;
}

.service-card.offset-top {
    margin-top: -40px;
}

.service-card.offset-bottom {
    margin-top: 40px;
}

.service-card.offset-middle {
    margin-top: 0;
}

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

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s;
}

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

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

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

.service-content p {
    color: #34495e;
    margin-bottom: 15px;
    flex: 1;
}

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

.service-select {
    padding: 14px 28px;
    background: #3498db;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cta-diagonal {
    min-height: 400px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    margin: 80px 0;
}

.cta-content-overlap {
    text-align: center;
    color: white;
    padding: 60px;
}

.cta-content-overlap h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-content-overlap p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.contact-form-section {
    padding: 100px 120px;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 120px;
}

.form-container-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

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

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

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

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

.form-submit {
    padding: 18px 40px;
    background: #27ae60;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.form-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.footer-asymmetric {
    background: #2c3e50;
    color: white;
    padding: 80px 120px 40px;
}

.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-block {
    flex: 1;
}

.footer-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-block p {
    opacity: 0.8;
}

.footer-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-block ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-block ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.7;
}

.about-hero {
    padding: 100px 120px 80px;
    background: #f8f9fa;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 30px;
}

.about-content {
    padding: 80px 120px;
}

.about-section {
    margin-bottom: 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    height: 400px;
}

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

.services-page-hero {
    padding: 100px 120px 60px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
}

.services-page-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.services-page-content {
    padding: 80px 120px;
}

.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    background: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-image {
    width: 400px;
    height: 350px;
}

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

.service-detail-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 25px;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.contact-page-hero {
    padding: 100px 120px 60px;
    background: #f8f9fa;
}

.contact-page-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.contact-page-content {
    padding: 80px 120px;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3498db;
}

.contact-detail p {
    font-size: 18px;
    color: #34495e;
}

.legal-page {
    padding: 100px 120px;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-page p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 10px;
    line-height: 1.8;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 120px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 56px;
    margin-bottom: 30px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 22px;
    color: #34495e;
    margin-bottom: 25px;
}

.thanks-service {
    font-size: 20px;
    color: #3498db;
    font-weight: 600;
    margin: 40px 0;
    padding: 20px;
    background: #ecf0f1;
}

.thanks-cta {
    display: inline-block;
    padding: 18px 40px;
    background: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s;
}

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

@media (max-width: 1024px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

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

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

    .hero-image-right {
        height: 60vh;
        clip-path: none;
    }

    .intro-overlap {
        flex-direction: column;
        padding: 40px;
        margin-top: 0;
    }

    .services-asymmetric {
        padding: 60px 40px;
    }

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

    .contact-form-section {
        padding: 60px 40px;
    }

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

    .footer-asymmetric {
        padding: 60px 40px 40px;
    }

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

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

    .about-section.reverse {
        flex-direction: column;
    }

    .contact-page-content {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
    }

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