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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.ad-label {
    background-color: #f8f9fa;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    color: #6c757d;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

.hero-content-offset {
    position: absolute;
    left: 8%;
    top: 18%;
    max-width: 520px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem 2.5rem;
    transform: rotate(-1deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-hero:hover {
    background-color: #1a252f;
}

.hero-image-wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    background-color: #dfe6e9;
}

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

.intro-block {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

.intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.intro-text-side {
    flex: 1;
    padding-left: 4rem;
}

.intro-text-side h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text-side p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

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

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

.services-pricing {
    padding: 7rem 2rem 8rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.section-header-offset {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding-left: 10%;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 1.1rem;
    color: #555;
}

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

.service-card {
    background-color: #ffffff;
    width: calc(33.333% - 1.4rem);
    min-width: 300px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-offset-1 {
    transform: rotate(0.8deg);
}

.card-offset-2 {
    transform: rotate(-1.2deg);
    margin-top: 2rem;
}

.card-offset-3 {
    transform: rotate(0.5deg);
}

.card-offset-4 {
    transform: rotate(-0.9deg);
    margin-top: -1rem;
}

.card-offset-5 {
    transform: rotate(1.1deg);
    margin-top: 1.5rem;
}

.card-offset-6 {
    transform: rotate(-0.6deg);
}

.service-img-container {
    height: 200px;
    overflow: hidden;
    background-color: #dfe6e9;
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-price {
    padding: 0 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

.trust-section {
    padding: 6rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.trust-content h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-points {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #ecf0f1;
}

.trust-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #bdc3c7;
}

.form-section {
    padding: 7rem 2rem;
    background-color: #ecf0f1;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem 2.5rem;
    transform: rotate(-0.5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container-offset h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-container-offset > p {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-col p,
.footer-col ul {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #bdc3c7;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #3498db;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #ecf0f1;
    font-size: 0.95rem;
    flex: 1;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.about-hero {
    padding: 8rem 2rem 5rem;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.about-story {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.team-approach {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.approach-content h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-block {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e0e0e0;
    min-width: 80px;
}

.step-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

.services-page-hero {
    padding: 6rem 2rem 4rem;
    background-color: #ecf0f1;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-page-hero p {
    font-size: 1.2rem;
    color: #555;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-detail-block {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #dfe6e9;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

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

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

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

.service-cta {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.services-cta-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #229954;
}

.contact-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #16a085 0%, #27ae60 100%);
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.contact-info-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

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

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

.contact-form-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-form-section p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-section {
    padding: 8rem 2rem;
    background-color: #ffffff;
    min-height: 60vh;
}

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

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

.thanks-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.thanks-service-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.thanks-service-info p {
    font-size: 1.05rem;
    color: #2c3e50;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-next-steps ul {
    list-style-position: inside;
    font-size: 1rem;
    line-height: 2;
    color: #555;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-link:hover {
    background-color: #2980b9;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
    min-height: 70vh;
}

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

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-content-offset {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
    }

    .hero-image-wrap {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .intro-inner,
    .story-layout,
    .service-detail-block,
    .contact-layout {
        flex-direction: column;
    }

    .intro-text-side {
        padding-left: 0;
    }

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

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

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

    .approach-steps {
        gap: 2rem;
    }

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

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

    .about-hero-content h1,
    .services-page-hero h1,
    .contact-hero h1 {
        font-size: 2.2rem;
    }
}