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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #7f8c8d;
    --dark-gray: #34495e;
    --border-color: #ddd;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 6%;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.trust-block {
    display: flex;
    padding: 5rem 6%;
    background: var(--primary-color);
    color: var(--white);
}

.trust-left {
    flex: 0.4;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.trust-right {
    flex: 0.6;
    padding-left: 4rem;
}

.trust-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.trust-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.problem-section {
    display: flex;
    align-items: center;
    padding: 5rem 6%;
}

.problem-visual {
    flex: 0.45;
}

.problem-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.problem-text {
    flex: 0.55;
    padding-left: 4rem;
}

.problem-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.problem-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--text-color);
}

.cta-inline {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.cta-inline:hover {
    color: var(--secondary-color);
}

.services-preview {
    padding: 5rem 6%;
    background: var(--light-bg);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header-center p {
    font-size: 1.1rem;
    color: var(--gray);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 350px;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.btn-service {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service:hover {
    background: var(--dark-gray);
}

.testimonial-flow {
    padding: 5rem 6%;
    background: var(--accent-color);
    color: var(--white);
}

.testimonial-item {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.why-section-alt {
    padding: 5rem 6%;
}

.why-section-alt h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.reasons-split {
    display: flex;
    gap: 2.5rem;
}

.reason-block {
    flex: 1;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.reason-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.reason-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.form-section-split {
    display: flex;
    padding: 5rem 6%;
    background: var(--light-bg);
}

.form-intro {
    flex: 0.4;
    padding-right: 3rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray);
}

.form-container {
    flex: 0.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    padding: 1.1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
}

.final-cta {
    padding: 5rem 6%;
    background: var(--dark-gray);
    text-align: center;
    color: var(--white);
}

.final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.85);
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.cta-large:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 6% 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px 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;
}

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

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-accept:hover {
    background: #c0392b;
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 6rem 6% 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-gray));
    color: var(--white);
    text-align: center;
}

.hero-text-block h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-text-block p,
.page-hero-services p,
.page-hero-contact p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.page-hero-services h1,
.page-hero-contact h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-section {
    display: flex;
    padding: 5rem 6%;
    align-items: center;
    gap: 3rem;
}

.story-image {
    flex: 0.45;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.story-content {
    flex: 0.55;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--text-color);
}

.values-section {
    padding: 5rem 6%;
    background: var(--light-bg);
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.team-section {
    padding: 5rem 6%;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--gray);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    max-width: 280px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-member p {
    font-size: 0.9rem;
    color: var(--gray);
}

.numbers-section {
    padding: 5rem 6%;
    background: var(--primary-color);
    color: var(--white);
}

.numbers-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.number-box {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.big-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.cta-about {
    padding: 4rem 6%;
    background: var(--light-bg);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-about p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

.services-detailed {
    padding: 3rem 6%;
}

.service-detail-card {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

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

.service-detail-left {
    flex: 0.4;
}

.service-detail-left img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.service-detail-right {
    flex: 0.6;
}

.service-detail-right h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.service-detail-right p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-detail-price {
    display: flex;
    flex-direction: column;
    margin: 1.5rem 0;
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.3rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.guarantee-section {
    padding: 4rem 6%;
    background: var(--light-bg);
    text-align: center;
}

.guarantee-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.guarantee-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.contact-info-section {
    padding: 4rem 6%;
}

.contact-info-block {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.info-item {
    flex: 1 1 250px;
    max-width: 300px;
}

.info-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.info-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-note {
    padding: 5rem 6%;
    background: var(--light-bg);
}

.contact-note h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 2rem;
}

.step-item {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

.faq-section {
    padding: 5rem 6%;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.final-cta-contact {
    padding: 4rem 6%;
    background: var(--dark-gray);
    text-align: center;
}

.final-cta-contact h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--dark-gray);
}

.legal-page p,
.legal-page ul {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-page ul {
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.legal-page strong {
    color: var(--primary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    padding: 2rem;
}

.thanks-content {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: #27ae60;
    color: var(--white);
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.service-confirmation {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-confirmation p {
    margin: 0;
    font-size: 1rem;
}

.thanks-note {
    font-size: 0.95rem;
    color: var(--gray);
}

.btn-back-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-back-home:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .hero-split,
    .trust-block,
    .problem-section,
    .form-section-split,
    .story-section,
    .service-detail-card {
        flex-direction: column;
    }

    .hero-content,
    .trust-right,
    .problem-text,
    .form-intro,
    .story-content {
        padding-left: 0;
        padding-right: 0;
    }

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

    .reasons-split,
    .steps-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-content h1,
    .hero-text-block h1,
    .page-hero-services h1,
    .page-hero-contact h1 {
        font-size: 2rem;
    }

    .services-grid,
    .team-grid,
    .numbers-grid,
    .contact-info-block {
        flex-direction: column;
        align-items: center;
    }

    .service-card,
    .team-member {
        max-width: 100%;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}