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

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

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

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

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .nav-floating {
        top: 20px;
        right: 20px;
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

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

    .hamburger {
        display: flex;
    }
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-left {
    flex: 1;
    padding-right: 60px;
    transform: translateX(-30px);
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-content-left p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: #4a5568;
}

.hero-image-right {
    flex: 1;
    transform: translateY(40px);
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e9ecef;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

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

.intro-asymmetric {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    padding: 120px 5% 80px;
    background: white;
}

.intro-block-offset {
    flex: 1.2;
    transform: translateY(-50px);
}

.intro-block-offset h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a252f;
}

.intro-block-offset p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
}

.intro-visual {
    flex: 0.8;
    transform: translateY(60px);
}

.intro-visual img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    background-color: #f8f9fa;
}

.problem-amplification {
    padding: 100px 5% 120px;
    background: #f8f9fa;
}

.problem-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.problem-text {
    flex: 1;
    transform: translateX(40px);
}

.problem-text h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a252f;
}

.problem-list {
    list-style: none;
    margin-bottom: 25px;
}

.problem-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: #4a5568;
}

.problem-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.problem-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.problem-image-overlap {
    flex: 1;
    transform: translateY(-80px) translateX(-30px);
}

.problem-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e9ecef;
}

.solution-reveal {
    padding: 140px 5% 100px;
    background: white;
}

.solution-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.solution-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.solution-header-center p {
    font-size: 1.2rem;
    color: #4a5568;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: calc(50% - 20px);
    background: #f8f9fa;
    border-radius: 15px;
    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.1);
}

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

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

.service-card.offset-center {
    transform: scale(1.05);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 25px 25px 15px;
    color: #1a252f;
}

.service-card p {
    margin: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 25px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: scale(1.02);
}

.trust-building {
    padding: 120px 5%;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.trust-content-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.trust-left {
    flex: 1.3;
}

.trust-left h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #1a252f;
}

.trust-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4a5568;
}

.trust-features {
    list-style: none;
    margin-top: 30px;
}

.trust-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: #4a5568;
}

.trust-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.trust-right {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transform: translateY(50px);
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #2c3e50;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

.form-section-offset {
    padding: 100px 5% 120px;
    background: white;
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 10%;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 35px;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-intro p {
    font-size: 1.05rem;
    color: #4a5568;
}

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

.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 #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #e9ecef;
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.disclaimer-section {
    padding: 80px 5%;
    background: #fff3cd;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #664d03;
}

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

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 37, 47, 0.98);
    color: white;
    padding: 25px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #3498db;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

.about-hero,
.services-hero,
.contact-hero {
    padding: 140px 5% 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.about-hero-content p,
.services-hero-content p,
.contact-hero-content p {
    font-size: 1.3rem;
    color: #4a5568;
}

.about-story {
    padding: 100px 5%;
    background: white;
}

.story-layout {
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a252f;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.story-image {
    flex: 0.8;
    transform: translateY(-40px);
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    background-color: #f8f9fa;
}

.team-values {
    padding: 100px 5%;
    background: #f8f9fa;
}

.values-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-item {
    width: calc(50% - 20px);
    background: white;
    padding: 40px;
    border-radius: 12px;
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.about-cta {
    padding: 100px 5%;
    background: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #4a5568;
}

.btn-cta {
    display: inline-block;
    padding: 16px 45px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

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

.services-detailed {
    padding: 80px 5%;
    background: white;
}

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

.services-intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-intro-section p {
    font-size: 1.15rem;
    color: #4a5568;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    background-color: #f8f9fa;
}

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

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4a5568;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #4a5568;
}

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

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

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-cta-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: #4a5568;
}

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

.contact-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a252f;
}

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

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-note p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.area-content {
    max-width: 800px;
    margin: 0 auto;
}

.area-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.area-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 5% 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-message {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: #4a5568;
}

.thanks-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.thanks-next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-next-steps ul {
    padding-left: 25px;
}

.thanks-next-steps ul li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #4a5568;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.btn-primary {
    background: #3498db;
    color: white;
}

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

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

.btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.legal-page {
    padding: 140px 5% 80px;
    background: white;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dee2e6;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-offset,
    .intro-asymmetric,
    .problem-container,
    .trust-content-split,
    .story-layout,
    .contact-layout {
        flex-direction: column;
    }

    .hero-content-left,
    .intro-block-offset,
    .problem-text,
    .trust-left,
    .story-text,
    .contact-details {
        transform: none;
        padding-right: 0;
    }

    .hero-image-right,
    .intro-visual,
    .problem-image-overlap,
    .trust-right,
    .story-image {
        transform: none;
    }

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

    .form-container-asymmetric {
        margin-left: 0;
        transform: none;
    }

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

    .service-card,
    .value-item {
        width: 100%;
    }

    .service-card.offset-top,
    .service-card.offset-bottom,
    .service-card.offset-center {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-content-left h1,
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .intro-block-offset h2,
    .solution-header-center h2,
    .trust-left h2,
    .story-text h2,
    .values-container h2,
    .cta-content h2,
    .services-intro-section h2,
    .contact-details h2,
    .area-content h2,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .footer-main {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}