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

:root {
    --primary: #1a4d7a;
    --secondary: #2d7ab5;
    --accent: #e8914d;
    --dark: #1a1a1a;
    --light: #f7f9fb;
    --gray: #6b7280;
    --border: #e5e7eb;
    --success: #10b981;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

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

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

.nav-main {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

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

.nav-menu a {
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    border-bottom-color: var(--accent);
}

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

.hero-text {
    flex: 1;
    padding: 6rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: #d67f3b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232,145,77,0.3);
    color: var(--white);
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26,77,122,0.3);
    color: var(--white);
}

.btn-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

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

.info-block {
    padding: 6rem 3rem;
    background: var(--white);
}

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

.info-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

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

.info-text {
    flex: 1;
}

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

.info-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--gray);
}

.stats-section {
    background: var(--light);
    padding: 5rem 3rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

.problem-section {
    padding: 6rem 3rem;
    background: var(--white);
}

.problem-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-direction: row-reverse;
}

.problem-text {
    flex: 1;
}

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

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--gray);
}

.problem-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.problem-visual img {
    width: 100%;
    height: auto;
}

.testimonial-inline {
    background: var(--light);
    padding: 2rem;
    border-left: 4px solid var(--accent);
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.testimonial-author {
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.services-section {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

.services-header p {
    font-size: 1.15rem;
    color: var(--gray);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border: 3px solid var(--accent);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

.btn-service:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.trust-section {
    padding: 6rem 3rem;
    background: var(--white);
}

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

.trust-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.trust-visual img {
    width: 100%;
    height: auto;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.trust-list {
    list-style: none;
    margin-bottom: 2rem;
}

.trust-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray);
    font-size: 1.05rem;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-box {
    background: var(--light);
    padding: 1.75rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.testimonial-box p {
    font-style: italic;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.testimonial-box span {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.form-section {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.15rem;
    opacity: 0.95;
}

.main-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
}

.btn-submit {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    padding: 1.125rem;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d67f3b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,145,77,0.3);
}

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

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

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.footer-main {
    background: #0f1419;
    color: #9ca3af;
    padding: 4rem 3rem 2rem;
}

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

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    display: none;
}

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

.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-actions {
    display: flex;
    gap: 1rem;
}

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

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

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

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

.btn-cookie-reject:hover {
    background: var(--white);
    color: var(--dark);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 3rem;
}

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

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.about-intro {
    padding: 6rem 3rem;
    background: var(--white);
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

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

.about-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.about-visual img {
    width: 100%;
    height: auto;
}

.values-section {
    padding: 6rem 3rem;
    background: var(--light);
    text-align: center;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

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

.value-card p {
    color: var(--gray);
    font-size: 1.05rem;
}

.team-section {
    padding: 6rem 3rem;
    background: var(--white);
}

.team-row {
    max-width: 1000px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.team-row:last-child {
    margin-bottom: 0;
}

.team-visual {
    flex: 0 0 200px;
}

.team-visual img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.team-text {
    flex: 1;
}

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

.team-role {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.history-section {
    padding: 6rem 3rem;
    background: var(--light);
}

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

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-year {
    flex: 0 0 100px;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.timeline-content p {
    color: var(--gray);
    font-size: 1.05rem;
}

.cta-section {
    padding: 6rem 3rem;
    background: var(--white);
    text-align: center;
}

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

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

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

.service-detail-card {
    margin-bottom: 6rem;
    position: relative;
}

.service-detail-card:last-child {
    margin-bottom: 0;
}

.service-detail-card.featured-service {
    background: linear-gradient(to right, #fff9f3 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 16px;
}

.service-detail-card.premium-service {
    background: linear-gradient(to right, #f0f9ff 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 16px;
}

.badge-large {
    position: absolute;
    top: -15px;
    right: 40px;
    background: var(--accent);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
}

.service-detail-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-detail-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
}

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

.service-detail-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-description {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.service-detail-text h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: var(--dark);
}

.service-includes {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--gray);
}

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

.service-time {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

.btn-service-detail:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,122,181,0.3);
}

.comparison-section {
    padding: 6rem 3rem;
    background: var(--light);
}

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

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

.comparison-col {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

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

.comparison-col p {
    color: var(--gray);
    font-size: 1.05rem;
}

.guarantee-section {
    padding: 6rem 3rem;
    background: var(--white);
    text-align: center;
}

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

.guarantee-section p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    padding: 4rem 3rem;
    background: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

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

.contact-item a {
    color: var(--secondary);
    font-weight: 600;
}

.contact-note {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.contact-map {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

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

.faq-section {
    padding: 6rem 3rem;
    background: var(--light);
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

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

.faq-item p {
    color: var(--gray);
    font-size: 1rem;
}

.thanks-section {
    padding: 6rem 3rem;
    background: var(--white);
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: var(--white);
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.05rem;
    color: var(--dark);
}

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

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.step-content p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.step-time {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

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

.thanks-contact p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.thanks-testimonial {
    padding: 4rem 3rem;
    background: var(--light);
}

.thanks-testimonial blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark);
    text-align: center;
}

.thanks-testimonial cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
}

.legal-page {
    padding: 4rem 3rem;
    background: var(--white);
}

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

.legal-updated {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.legal-content h4 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

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

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--gray);
    line-height: 1.7;
}

.legal-content a {
    color: var(--secondary);
    font-weight: 600;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text {
        padding: 4rem 2rem;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .info-row,
    .problem-row,
    .trust-row,
    .about-row,
    .team-row,
    .service-detail-content,
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .stats-section {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

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

    .cookie-actions {
        justify-content: center;
    }

    .thanks-steps {
        gap: 1.5rem;
    }

    .thanks-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .info-text h2,
    .problem-text h2,
    .about-text h2 {
        font-size: 1.75rem;
    }

    .services-header h2,
    .values-section h2,
    .history-section h2,
    .faq-section h2 {
        font-size: 1.85rem;
    }

    .main-form {
        padding: 2rem 1.5rem;
    }

    .faq-item {
        flex: 1 1 100%;
    }
}
