* {
    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.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.cookie-banner.active {
    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: 300px;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.header-asymmetric {
    background-color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-block {
    margin-right: 3rem;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-floating {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

.nav-floating a:hover {
    color: #27ae60;
}

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

.hero-image-container {
    position: relative;
    width: 85%;
    margin-left: 0;
    height: 600px;
    background-color: #bdc3c7;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(44,62,80,0.95) 0%, rgba(39,174,96,0.9) 100%);
    color: white;
    padding: 3rem;
    width: 55%;
    transform: translateX(15%);
}

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

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-text-offset {
    max-width: 700px;
    margin-left: auto;
    margin-right: 10%;
    margin-top: -120px;
    background-color: #ffffff;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    position: relative;
    z-index: 10;
}

.hero-text-offset p {
    font-size: 1.1rem;
    color: #34495e;
}

.intro-irregular {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-column-left {
    flex: 1;
    padding-top: 3rem;
}

.intro-column-left h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.intro-column-left p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #34495e;
}

.intro-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -80px;
}

.intro-image-overlap img {
    width: 100%;
    height: auto;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    background-color: #95a5a6;
}

.problem-block-staggered {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    padding: 6rem 2rem;
    margin: 8rem 0;
}

.problem-block-staggered {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.problem-card {
    background-color: #ffffff;
    padding: 2.5rem;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    position: relative;
}

.problem-card.card-1 {
    transform: translateY(-30px);
}

.problem-card.card-2 {
    transform: translateY(20px);
}

.problem-card.card-3 {
    transform: translateY(-10px);
}

.problem-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e74c3c;
    font-weight: 700;
}

.problem-card p {
    color: #34495e;
    font-size: 1rem;
}

.solution-split {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.solution-text {
    flex: 1.2;
}

.solution-text h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #27ae60;
    font-weight: 700;
    line-height: 1.3;
}

.solution-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #34495e;
}

.solution-visual {
    flex: 1;
    background-color: #7f8c8d;
}

.solution-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.services-asymmetric {
    max-width: 1400px;
    margin: 10rem auto;
    padding: 0 2rem;
}

.services-heading {
    font-size: 2.6rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-weight: 800;
    text-align: left;
    max-width: 700px;
}

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

.service-card {
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    overflow: hidden;
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
}

.service-card h4 {
    font-size: 1.6rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #34495e;
    font-size: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #27ae60;
    margin: 1.5rem 1.5rem 1rem;
}

.btn-select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: #2c3e50;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

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

.service-offset-1 {
    transform: translateY(-20px);
}

.service-offset-2 {
    transform: translateY(30px);
}

.service-offset-3 {
    transform: translateY(10px);
}

.service-offset-4 {
    transform: translateY(-30px);
}

.service-offset-5 {
    transform: translateY(15px);
}

.trust-block-diagonal {
    background-color: #2c3e50;
    color: white;
    padding: 5rem 2rem;
    margin: 8rem 0;
    transform: skewY(-2deg);
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.trust-content h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.form-section-irregular {
    max-width: 1200px;
    margin: 10rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro-text {
    flex: 0.8;
    padding-top: 2rem;
}

.form-intro-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.form-intro-text p {
    font-size: 1.1rem;
    color: #34495e;
}

.contact-form-offset {
    flex: 1.2;
    background-color: #ffffff;
    padding: 3rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    transform: translateX(30px);
}

.form-group {
    margin-bottom: 1.8rem;
}

.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.9rem;
    border: 2px solid #ecf0f1;
    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: #27ae60;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #27ae60;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-block {
    max-width: 1200px;
    margin: 6rem auto 4rem;
    padding: 2.5rem;
    background-color: #ecf0f1;
    border-left: 4px solid #e74c3c;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #34495e;
    line-height: 1.7;
}

.footer-split {
    background-color: #2c3e50;
    color: white;
    padding: 4rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-column p {
    color: #bdc3c7;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

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

.footer-column a:hover {
    color: #27ae60;
}

.service-card.selected {
    border: 3px solid #27ae60;
}

@media (max-width: 768px) {
    .hero-overlay {
        width: 100%;
        transform: translateX(0);
        position: static;
        padding: 2rem;
    }

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

    .hero-text-offset {
        margin-top: 2rem;
        margin-right: 0;
    }

    .intro-irregular,
    .solution-split,
    .form-section-irregular {
        flex-direction: column;
    }

    .intro-image-overlap {
        margin-top: 0;
    }

    .contact-form-offset {
        transform: translateX(0);
    }

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

    .service-card {
        transform: translateY(0) !important;
        max-width: 100%;
    }

    .problem-card {
        transform: translateY(0) !important;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

.contact-page {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-info-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.contact-info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
    font-weight: 700;
}

.contact-info-card p {
    margin-bottom: 0.8rem;
    color: #34495e;
    font-size: 1.05rem;
}

.about-page {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.8;
}

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

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

.services-page {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.services-page-header {
    margin-bottom: 4rem;
}

.services-page-header h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 800;
}

.service-detail-card {
    background-color: #ffffff;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 3rem;
}

.service-detail-image {
    flex: 0.8;
    background-color: #95a5a6;
}

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

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

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

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

.service-detail-price {
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
    margin-top: 2rem;
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-page h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 800;
}

.legal-page h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

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

.legal-page ul li {
    margin-bottom: 0.8rem;
    color: #34495e;
    font-size: 1.05rem;
}

.thanks-page {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-box {
    background-color: #ffffff;
    padding: 4rem 3rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.thanks-box h2 {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 2rem;
    font-weight: 800;
}

.thanks-box p {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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