:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #22c55e;
    --accent-color: #f59e0b;
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

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

.btn-accept:hover {
    background: #16a34a;
}

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

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

.main-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav ul {
    display: none;
    list-style: none;
    gap: 30px;
}

.main-nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 80px 0;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-lead {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-primary,
.cta-secondary,
.cta-urgent,
.cta-large {
    display: inline-block;
    padding: 15px 32px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary {
    background: var(--primary-color);
    color: white;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.cta-urgent {
    background: var(--accent-color);
    color: white;
    font-size: 18px;
}

.cta-urgent:hover {
    background: #d97706;
}

.cta-large {
    background: var(--primary-color);
    color: white;
    font-size: 20px;
    padding: 18px 40px;
}

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

.intro-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.intro-section h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.intro-section p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.problem-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-left,
.content-right {
    flex: 1;
}

.content-left img,
.content-right img {
    width: 100%;
    border-radius: 12px;
}

.split-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.trust-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.section-title-center {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--secondary-color);
}

.testimonial-section {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
}

.testimonial-large {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-large cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 18px;
    opacity: 0.9;
}

.why-us-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.section-title-left {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.benefit-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.process-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.split-content.reverse {
    flex-direction: column-reverse;
}

.process-steps {
    margin: 30px 0;
    padding-left: 20px;
}

.process-steps li {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-light);
}

.process-steps li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.social-proof-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.testimonials-mini {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.testimonial-box {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-box p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.testimonial-box cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 14px;
}

.urgency-section {
    background: var(--accent-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.urgency-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.urgency-section p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    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: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
}

.final-cta-section {
    background: var(--bg-light);
    padding: 100px 0;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.main-footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    color: var(--bg-light);
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: var(--bg-light);
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: var(--bg-light);
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    background: var(--accent-color);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #d97706;
    transform: translateY(-3px);
}

.page-hero,
.page-hero-small {
    background: var(--primary-color);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1,
.page-hero-small h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.about-intro,
.values-section,
.team-section,
.mission-section,
.experience-section,
.cta-about {
    padding: 80px 0;
}

.about-intro {
    background: var(--bg-white);
}

.about-intro h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.about-intro p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-section {
    background: var(--bg-light);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    background: var(--bg-white);
}

.section-intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.team-highlight {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.team-highlight p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
}

.mission-section {
    background: var(--bg-light);
}

.mission-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.mission-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.experience-section {
    background: var(--primary-color);
    color: white;
}

.stats-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

.cta-about {
    background: var(--bg-white);
    text-align: center;
}

.cta-about h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.services-detail-section {
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
}

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

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.price-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 25px;
}

.service-checklist {
    list-style: none;
    margin-bottom: 30px;
}

.service-checklist li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.guarantee-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.guarantee-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.guarantee-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-info-section {
    padding: 60px 0;
}

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.map-overlay p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-reasons-section,
.faq-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.contact-reasons-section h2,
.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.reasons-list,
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reason-item,
.faq-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
}

.reason-item h4,
.faq-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.reason-item p,
.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-section {
    background: var(--bg-white);
}

.cta-contact {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-contact p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.thanks-hero {
    background: var(--bg-light);
    padding: 80px 0;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.thanks-lead {
    font-size: 18px;
    color: var(--text-light);
}

.thanks-info,
.thanks-service-recap,
.thanks-contact-info,
.thanks-cta {
    padding: 60px 0;
}

.thanks-info {
    background: var(--bg-white);
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-service-recap {
    background: var(--bg-light);
}

.thanks-service-recap h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.service-recap-box {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.service-recap-box p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.thanks-contact-info {
    background: var(--bg-white);
}

.thanks-contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.thanks-contact-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

.contact-box p {
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-cta {
    background: var(--bg-light);
    text-align: center;
}

.thanks-cta h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    color: var(--text-dark);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.cookie-table thead {
    background: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 48px;
    }

    .hero-lead {
        font-size: 20px;
    }

    .main-nav ul {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

    .split-content.reverse {
        flex-direction: row-reverse;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 15px);
    }

    .testimonials-mini {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

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

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

    .contact-split {
        flex-direction: row;
    }

    .stats-row {
        flex-direction: row;
        justify-content: space-around;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 15px);
    }

    .cta-buttons {
        flex-direction: row;
        max-width: 100%;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}