/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 0 20px;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #d32f2f;
}

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

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d32f2f;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: 0.3s;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-accept {
    background: #d32f2f;
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.btn-reject {
    background: transparent;
    color: white;
    padding: 10px 24px;
    border: 1px solid white;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-reject:hover {
    background: white;
    color: #1a1a1a;
}

.cookie-actions a {
    color: #ffffff;
    text-decoration: underline;
    font-size: 14px;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 100vh;
    margin-top: 80px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #555555;
}

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

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

.cta-primary {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 18px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.cta-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #d32f2f;
    padding: 18px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid #d32f2f;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #d32f2f;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #d32f2f;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666666;
    margin-top: 8px;
}

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    background: #1a1a1a;
    color: white;
}

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

.trust-text {
    font-size: 24px;
    line-height: 1.7;
    text-align: center;
    font-weight: 300;
}

/* Services Showcase */
.services-showcase {
    padding: 120px 20px;
}

.section-intro-split {
    display: flex;
    gap: 100px;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.intro-left {
    flex: 1;
}

.intro-left h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
}

.intro-right {
    flex: 1.5;
    display: flex;
    align-items: center;
}

.intro-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    min-height: 350px;
}

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

.service-content {
    flex: 1.2;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 25px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #d32f2f;
    margin-bottom: 25px;
}

.btn-select-service {
    background: #d32f2f;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #b71c1c;
    transform: translateX(5px);
}

/* Why Section */
.why-section {
    padding: 120px 20px;
    background: #f5f5f5;
}

.why-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.why-content {
    flex: 1.3;
}

.why-content h2 {
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: 800;
    color: #1a1a1a;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.why-item {
    display: flex;
    gap: 25px;
}

.why-number {
    font-size: 18px;
    font-weight: 800;
    color: #d32f2f;
    min-width: 50px;
}

.why-text h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1a1a1a;
}

.why-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

/* Testimonials */
.testimonials {
    padding: 120px 20px;
    background: white;
}

.testimonials h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 70px;
    color: #1a1a1a;
}

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

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial-item {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #d32f2f;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 18px;
    color: #1a1a1a;
}

.testimonial-author span {
    font-size: 15px;
    color: #777777;
}

/* CTA Banner */
.cta-banner {
    padding: 100px 20px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
}

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

.cta-left h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-left p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    background: white;
    color: #d32f2f;
    padding: 20px 45px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* Form Section */
.form-section {
    padding: 120px 20px;
    background: #f5f5f5;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.form-info p {
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 40px;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item svg {
    color: #d32f2f;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.form-box {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.checkbox-group label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group span {
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-group a {
    color: #d32f2f;
    text-decoration: underline;
}

.btn-submit {
    background: #d32f2f;
    color: white;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-submit:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 20px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: #cccccc;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #d32f2f;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
    color: #888888;
    font-size: 14px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

.sticky-btn {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(211, 47, 47, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(211, 47, 47, 0.5);
}

/* Page Hero */
.page-hero {
    padding: 180px 20px 100px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    margin-top: 80px;
}

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

.page-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.1;
}

.hero-lead {
    font-size: 22px;
    line-height: 1.6;
    color: #555555;
}

/* Story Section */
.story-section {
    padding: 100px 20px;
}

.story-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
}

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

/* Values Section */
.values-section {
    padding: 100px 20px;
    background: #f5f5f5;
}

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

.values-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 70px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.value-icon {
    color: #d32f2f;
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

/* Team Section */
.team-section {
    padding: 100px 20px;
}

.team-intro-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.team-intro-left {
    flex: 1;
}

.team-intro-left h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.team-intro-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.team-intro-right {
    flex: 1;
}

.team-intro-right img {
    width: 100%;
    border-radius: 12px;
}

/* Numbers Section */
.numbers-section {
    padding: 100px 20px;
    background: #1a1a1a;
    color: white;
}

.numbers-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px;
}

.number-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.number-big {
    font-size: 64px;
    font-weight: 800;
    color: #d32f2f;
    line-height: 1;
}

.number-label {
    font-size: 16px;
    margin-top: 15px;
    color: #cccccc;
}

/* Mission Section */
.mission-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    text-align: center;
}

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

.mission-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
}

.mission-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* CTA About */
.cta-about {
    padding: 100px 20px;
    background: #f5f5f5;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-about-content p {
    font-size: 20px;
    color: #555555;
    margin-bottom: 40px;
}

/* Services Detail */
.services-detail {
    padding: 80px 20px;
}

.service-detail-item {
    margin-bottom: 80px;
}

.service-detail-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.service-features {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.service-features h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-features ul {
    list-style: disc;
    padding-left: 20px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 8px;
}

.service-price-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 30px 0;
}

.price-label {
    font-size: 16px;
    color: #777777;
}

.price-value {
    font-size: 40px;
    font-weight: 800;
    color: #d32f2f;
}

/* Process Section */
.process-section {
    padding: 100px 20px;
    background: #f5f5f5;
}

.process-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #d32f2f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
}

/* CTA Services */
.cta-services {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: white;
    text-align: center;
}

.cta-services-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-services-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Contact Page */
.contact-main {
    padding: 80px 20px;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info-box {
    flex: 1;
}

.contact-info-box h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    color: #d32f2f;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.contact-text a {
    color: #d32f2f;
}

.contact-extra,
.contact-service-emergency {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.contact-extra h3,
.contact-service-emergency h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-extra p,
.contact-service-emergency p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.contact-extra a,
.contact-service-emergency a {
    color: #d32f2f;
    font-weight: 600;
}

.contact-form-box {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-box h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 16px;
    color: #555555;
    margin-bottom: 30px;
}

/* Map Section */
.map-section {
    padding: 0;
    background: #e0e0e0;
}

.map-container {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: #777777;
}

.map-placeholder svg {
    margin: 0 auto 15px;
}

.map-placeholder p {
    font-size: 16px;
}

/* Thanks Page */
.thanks-hero {
    padding: 180px 20px 100px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    margin-top: 80px;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    color: #4caf50;
    margin-bottom: 30px;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 30px;
}

.service-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    font-size: 16px;
    color: #1a1a1a;
}

/* Next Steps */
.thanks-next-steps {
    padding: 80px 20px;
}

.thanks-next-steps h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.next-step {
    display: flex;
    gap: 25px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #d32f2f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

/* Thanks CTA */
.thanks-cta {
    padding: 80px 20px;
    background: #f5f5f5;
    text-align: center;
}

.thanks-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 16px 35px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.cta-button.secondary {
    background: transparent;
    color: #d32f2f;
    border: 2px solid #d32f2f;
}

.cta-button.secondary:hover {
    background: #d32f2f;
    color: white;
}

/* Thanks Info Box */
.thanks-info-box {
    padding: 80px 20px;
}

.info-card {
    background: #fff3cd;
    border-left: 4px solid #ff9800;
    padding: 30px;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.info-card a {
    color: #d32f2f;
    font-weight: 600;
}

/* Policy Page */
.policy-page {
    padding: 80px 20px;
    margin-top: 80px;
}

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

.policy-container h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.policy-intro {
    font-size: 16px;
    color: #777777;
    margin-bottom: 50px;
}

.policy-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.policy-container h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #1a1a1a;
}

.policy-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.policy-container ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.policy-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 10px;
}

.policy-container a {
    color: #d32f2f;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-split,
    .section-intro-split,
    .why-split,
    .form-container-split,
    .story-split,
    .team-intro-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

    .hero-content h1,
    .page-hero h1 {
        font-size: 40px;
    }

    .process-steps {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

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

    .trust-text {
        font-size: 20px;
    }

    .intro-left h2,
    .why-content h2,
    .testimonials h2 {
        font-size: 36px;
    }

    .cta-left h2 {
        font-size: 32px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

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

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .service-content,
    .form-box,
    .contact-form-box {
        padding: 30px;
    }

    .values-grid {
        gap: 20px;
    }

    .value-card {
        min-width: 100%;
    }
}