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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.92);
    color: #fff;
    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;
}

.cookie-content p {
    margin: 0 20px 0 0;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2ecc71;
    color: #fff;
}

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

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

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

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

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

.nav-disclaimer {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 12px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.hero-image-block {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.4), rgba(52, 152, 219, 0.3));
}

.hero-text-offset {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 50px;
    background-color: #fff;
    margin-left: 8%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-text-offset h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-text-offset p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.intro-stagger {
    display: flex;
    padding: 100px 8%;
    gap: 60px;
    align-items: center;
}

.intro-left {
    flex: 1.2;
}

.intro-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-left p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.intro-right-image {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    transform: translateY(40px);
}

.services-grid-irregular {
    padding: 80px 8%;
    background-color: #f8f9fa;
    position: relative;
}

.services-header-offset {
    margin-bottom: 50px;
    margin-left: 10%;
}

.services-header-offset h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    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.15);
}

.card-large {
    width: 55%;
    margin-left: 5%;
}

.card-small {
    width: 35%;
    margin-left: auto;
    margin-right: 8%;
}

.card-tall {
    width: 40%;
    margin-left: 12%;
}

.card-wide {
    width: 60%;
    margin-left: auto;
    margin-right: 5%;
}

.card-medium {
    width: 45%;
    margin-left: 20%;
}

.card-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 30px;
}

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

.card-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

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

.btn-select {
    padding: 12px 28px;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #34495e;
    transform: translateX(5px);
}

.form-section-diagonal {
    padding: 100px 8%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-container p {
    margin-bottom: 30px;
    color: #555;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #229954;
    transform: scale(1.02);
}

.trust-section {
    padding: 80px 8%;
    background-color: #fff;
}

.trust-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #3498db;
}

.trust-item p {
    font-size: 16px;
    color: #555;
}

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

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

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

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

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 13px;
}

.about-hero {
    text-align: center;
    padding: 150px 8% 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
}

.about-story-offset {
    display: flex;
    padding: 100px 8%;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    transform: translateX(-40px);
}

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.values-diagonal {
    padding: 100px 8%;
    background-color: #f8f9fa;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.values-diagonal h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-container {
    max-width: 1000px;
    margin: 0 auto;
}

.value-block {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 70%;
}

.value-offset {
    margin-left: auto;
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #3498db;
}

.value-block p {
    font-size: 16px;
    color: #555;
}

.team-approach {
    padding: 100px 8%;
}

.team-approach h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-approach > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
}

.step-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #3498db;
    width: 65%;
}

.step-pushed {
    margin-left: auto;
}

.step-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-item p {
    font-size: 16px;
    color: #555;
}

.cta-about {
    text-align: center;
    padding: 80px 8%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
}

.services-hero {
    text-align: center;
    padding: 150px 8% 80px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: #fff;
}

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

.services-hero p {
    font-size: 20px;
}

.services-detailed {
    padding: 80px 8%;
}

.service-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.right-align {
    flex-direction: row-reverse;
}

.detail-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.detail-content {
    flex: 1.2;
}

.detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.detail-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
}

.price-display {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
    display: inline-block;
}

.price-amount {
    font-size: 36px;
    font-weight: bold;
    color: #27ae60;
    margin-right: 10px;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
}

.btn-select-large {
    padding: 15px 35px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select-large:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.services-cta-section {
    text-align: center;
    padding: 80px 8%;
    background-color: #f8f9fa;
}

.services-cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-cta-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.contact-hero {
    text-align: center;
    padding: 150px 8% 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

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

.contact-hero p {
    font-size: 20px;
}

.contact-layout {
    display: flex;
    padding: 100px 8%;
    gap: 80px;
}

.contact-info-offset {
    flex: 1;
}

.contact-info-offset h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.info-block h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3498db;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.contact-message {
    flex: 1.3;
}

.contact-message h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-message p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.contact-map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8%;
    border-radius: 8px;
}

.map-overlay {
    text-align: center;
    color: #fff;
    font-size: 20px;
    padding: 40px;
}

.thanks-hero {
    text-align: center;
    padding: 150px 8% 80px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: #fff;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.thanks-hero p {
    font-size: 20px;
}

.thanks-content {
    display: flex;
    padding: 100px 8%;
    gap: 60px;
}

.thanks-message {
    flex: 2;
}

.thanks-message h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message > p {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.step-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 4px;
    border-left: 4px solid #3498db;
}

.step-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-box p {
    font-size: 16px;
    color: #555;
}

.thanks-sidebar {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    align-self: flex-start;
}

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

.thanks-sidebar p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.btn-secondary {
    display: block;
    padding: 12px 20px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

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

.legal-page {
    max-width: 900px;
    margin: 120px auto 80px;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.legal-page ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-page em {
    color: #7f8c8d;
    font-size: 14px;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-asymmetric {
        flex-direction: column;
        height: auto;
    }

    .hero-image-block {
        position: relative;
        width: 100%;
        height: 300px;
        clip-path: none;
    }

    .hero-text-offset {
        margin-left: 0;
        margin-top: -50px;
        width: 90%;
        margin-left: 5%;
    }

    .intro-stagger,
    .about-story-offset,
    .service-detail,
    .contact-layout,
    .thanks-content {
        flex-direction: column;
    }

    .intro-right-image,
    .story-image {
        transform: none;
        height: 300px;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

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

    .value-block {
        width: 100%;
    }

    .step-item {
        width: 100%;
    }
}
