/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1000;
}

/* Section Warum UmzugProfis24 */
.section-title {
    color: #1e293b;
    font-weight: 700;
    text-align: center;
    font-size: 2em;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Senior Section */
.senior-section {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #e9d5ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.senior-section-decorative {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.senior-section-circle-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    top: -200px;
    right: -200px;
}

.senior-section-circle-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #a78bfa, transparent);
    bottom: -150px;
    left: -150px;
}

.senior-container {
    position: relative;
    z-index: 1;
}

.senior-header {
    text-align: center;
    margin-bottom: 60px;
}

.care-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.care-badge-icon {
    vertical-align: middle;
    margin-right: 8px;
}

.senior-title {
    font-size: 2.8em;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}

.senior-subtitle {
    font-size: 1.3em;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.senior-subtitle-accent {
    color: #8b5cf6;
}

/* Senior Service Cards Grid */
.senior-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.senior-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.card-accent-green {
    background: linear-gradient(90deg, #10b981, #059669);
}

.card-accent-blue {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.senior-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.senior-card-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.senior-card-icon-wrapper-green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.senior-card-icon-wrapper-blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.senior-card-title {
    color: #1e293b;
    font-size: 1.6em;
    margin: 0;
}

.senior-card-description {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Service List Items */
.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}

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

.service-list-item-green {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.service-list-item-blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.service-list-item-title-green {
    color: #14532d;
}

.service-list-item-title-blue {
    color: #1e3a8a;
}

.service-list-item-subtitle {
    color: #64748b;
    font-size: 0.9em;
}

/* Stat Card Star Icon */
.stat-star-icon {
    font-size: 24px;
}

/* Video Description Highlight */
.video-description-highlight {
    color: #10b981;
}

/* Video Fallback Text */
.video-fallback-text {
    color: white;
    text-align: center;
    padding: 20px;
}

.video-fallback-link {
    color: #10b981;
}

/* Senioren Paket Section */
.senioren-header {
    text-align: center;
    margin-bottom: 40px;
}

.senioren-header-icon {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.senioren-header-title {
    color: #92400e;
    font-size: 2em;
    margin-bottom: 10px;
}

.senioren-header-subtitle {
    color: #78350f;
    font-size: 1.1em;
}

.senioren-icon-green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.senioren-icon-blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.senioren-icon-pink {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.senioren-card-title {
    color: #1e293b;
    margin-bottom: 10px;
}

.senioren-card-description {
    color: #64748b;
    font-size: 0.95em;
    line-height: 1.6;
}

.senioren-cta-description {
    color: #64748b;
    font-size: 1.05em;
}

.senioren-cta-highlight {
    color: #16a34a;
}

/* Senior Testimonials Section */
.senior-testimonials-wrapper {
    margin-bottom: 50px;
}

.senior-testimonials-title {
    text-align: center;
    color: #1e293b;
    font-size: 2em;
    margin-bottom: 40px;
}

.senior-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.senior-testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.senior-testimonial-stars {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fbbf24;
}

.senior-testimonial-text {
    color: #475569;
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.senior-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.senior-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.senior-testimonial-avatar-pink {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.senior-testimonial-avatar-blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.senior-testimonial-avatar-green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.senior-testimonial-initials {
    font-size: 1.5em;
}

.senior-testimonial-initials-pink {
    color: #ec4899;
}

.senior-testimonial-initials-blue {
    color: #2563eb;
}

.senior-testimonial-initials-green {
    color: #16a34a;
}

.senior-testimonial-name {
    color: #1e293b;
    display: block;
}

.senior-testimonial-location {
    color: #64748b;
}

/* Senior CTA Section */
.senior-cta-section {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.senior-cta-title {
    color: white;
    font-size: 2em;
    margin-bottom: 20px;
}

.senior-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.senior-cta-button-white {
    background: white;
    color: #7c3aed;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.senior-cta-button-green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transition: all 0.3s;
}

.senior-cta-button-icon {
    vertical-align: middle;
    margin-right: 10px;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.faq-decoration-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-decoration-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 2.8em;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}

.faq-subtitle {
    font-size: 1.3em;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.faq-subtitle-highlight {
    color: #3b82f6;
}

.faq-container-inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* FAQ Items */
.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 30px 35px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon-yellow {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.faq-icon-green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.faq-question-content {
    flex-grow: 1;
}

.faq-question-title {
    color: #1e293b;
    font-size: 1.4em;
    margin: 0;
    font-weight: 700;
}

.faq-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-arrow svg {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow svg {
    transform: rotate(180deg);
}

.faq-answer-content {
    padding: 0 35px 30px 35px;
}

/* FAQ Price Box */
.faq-price-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.faq-price-box-title {
    color: #92400e;
    margin-bottom: 15px;
}

.faq-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.faq-price-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.faq-price-value {
    color: #d97706;
    display: block;
    font-size: 1.3em;
}

.faq-price-label {
    color: #64748b;
}

.faq-text {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-info-box {
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.faq-info-title {
    color: #1e293b;
    margin-bottom: 15px;
}

.faq-info-icon {
    vertical-align: middle;
    margin-right: 10px;
}

.faq-info-list {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
    padding-left: 25px;
}

/* FAQ Season Cards */
.faq-season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.faq-season-card {
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.faq-season-card-red {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.faq-season-card-blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.faq-season-card-icon {
    margin-bottom: 10px;
}

.faq-season-title-red {
    color: #991b1b;
    margin-bottom: 10px;
}

.faq-season-title-blue {
    color: #1e3a8a;
    margin-bottom: 10px;
}

.faq-season-time-red {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.faq-season-time-blue {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.faq-season-period {
    color: #64748b;
    font-size: 0.9em;
}

/* FAQ Early Bird Box */
.faq-early-bird-box {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 15px;
    padding: 20px;
}

.faq-early-bird-title {
    color: #14532d;
    margin-bottom: 10px;
}

.faq-early-bird-discount {
    color: #15803d;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.faq-early-bird-text {
    color: #64748b;
    line-height: 1.6;
}

/* FAQ Icon Styles */
.faq-icon-purple {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}

/* FAQ Insurance Box */
.faq-insurance-box {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.faq-insurance-icon {
    margin-bottom: 15px;
}

.faq-insurance-title {
    color: #312e81;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.faq-insurance-subtitle {
    color: #4c1d95;
    font-weight: 700;
}

/* FAQ Insurance Cards */
.faq-insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.faq-insurance-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.faq-insurance-card-icon {
    margin-bottom: 10px;
}

.faq-insurance-card-title {
    color: #1e293b;
    display: block;
    margin-bottom: 5px;
}

.faq-insurance-card-text {
    color: #64748b;
    font-size: 0.9em;
}

/* FAQ Warning Box */
.faq-warning-box {
    background: #fef3c7;
    border-left: 4px solid #d97706;
    padding: 20px;
    border-radius: 8px;
}

.faq-warning-title {
    color: #92400e;
    margin-bottom: 10px;
}

.faq-warning-icon {
    vertical-align: middle;
    margin-right: 10px;
}

.faq-warning-list {
    color: #78350f;
    line-height: 1.8;
    margin: 0;
    padding-left: 25px;
}

/* FAQ Icon Pink */
.faq-icon-pink {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

/* FAQ Service Box */
.faq-service-box {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.faq-service-title {
    color: #831843;
    margin-bottom: 15px;
}

.faq-service-icon {
    vertical-align: middle;
    margin-right: 10px;
}

.faq-service-text {
    color: #64748b;
    line-height: 1.8;
}

/* FAQ Service Grid */
.faq-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.faq-service-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
}

.faq-service-card-title {
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-service-list {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
    padding-left: 20px;
}

/* FAQ Success Box */
.faq-success-box {
    background: #dcfce7;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.faq-success-text {
    color: #14532d;
    font-weight: 700;
    margin: 0;
}

.faq-success-icon {
    vertical-align: middle;
    margin-right: 10px;
}

/* FAQ Icon Orange */
.faq-icon-orange {
    background: linear-gradient(135deg, #fed7aa, #fdba74);
}

/* FAQ Weekend Box */
.faq-weekend-box {
    background: linear-gradient(135deg, #fed7aa, #fdba74);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
}

.faq-weekend-icon {
    margin-bottom: 15px;
}

.faq-weekend-title {
    color: #7c2d12;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.faq-weekend-subtitle {
    color: #431407;
}

/* FAQ Time Grid */
.faq-time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.faq-time-card {
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.faq-time-card-normal {
    background: #f8fafc;
}

.faq-time-card-saturday {
    background: #fef3c7;
}

.faq-time-card-sunday {
    background: #fee2e2;
}

.faq-time-day {
    color: #1e293b;
    display: block;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.faq-time-price {
    font-weight: 700;
    font-size: 1.3em;
    display: block;
}

.faq-time-price-normal {
    color: #10b981;
}

.faq-time-price-saturday {
    color: #d97706;
}

.faq-time-price-sunday {
    color: #dc2626;
}

.faq-time-hours {
    color: #64748b;
    font-size: 0.9em;
}

/* FAQ Tip Box */
.faq-tip-box {
    background: #dbeafe;
    border-left: 4px solid #2563eb;
    padding: 20px;
    border-radius: 8px;
}

.faq-tip-title {
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-tip-icon {
    vertical-align: middle;
    margin-right: 10px;
}

.faq-tip-text {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* FAQ Icon Light Green */
.faq-icon-light-green {
    background: linear-gradient(135deg, #a7f3d0, #6ee7b7);
}

/* FAQ Timeline */
.faq-timeline-title {
    color: #1e293b;
    margin-bottom: 25px;
}

.faq-timeline-container {
    position: relative;
}

.faq-timeline-line {
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #10b981, #059669);
}

.faq-timeline-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
}

.faq-timeline-step:last-child {
    margin-bottom: 0;
}

.faq-timeline-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #14532d;
    border: 3px solid white;
    position: relative;
    z-index: 1;
}

.faq-timeline-number-final {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.faq-timeline-content {
    flex-grow: 1;
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
}

.faq-timeline-content-final {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.faq-timeline-step-title {
    color: #14532d;
    margin-bottom: 10px;
}

.faq-timeline-step-title-final {
    color: #92400e;
}

.faq-timeline-step-text {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.faq-timeline-step-text-final {
    color: #78350f;
}

/* FAQ CTA Section */
.faq-cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.faq-cta-title {
    color: white;
    font-size: 2.2em;
    margin-bottom: 20px;
    font-weight: 700;
}

.faq-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2em;
    margin-bottom: 30px;
}

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

.faq-cta-button-white,
a.faq-cta-button-white {
    background: white;
    color: #2563eb;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.faq-cta-button-white:hover,
a.faq-cta-button-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    color: #1d4ed8;
}

.faq-cta-button-green,
a.faq-cta-button-green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.faq-cta-button-green:hover,
a.faq-cta-button-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
}

.faq-cta-button-icon {
    vertical-align: middle;
    margin-right: 10px;
}

/* Quick Stats Container */
.quick-stats-container {
    margin-bottom: 50px;
    position: relative;
}

.quick-stats-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.stats-decoration-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stats-decoration-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Stat Cards */
.stat-card {
    padding: clamp(16px, 2.5vw, 24px);
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
}

.stat-card-green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-card-yellow {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.stat-card-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.stat-card-red {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.stat-card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 0 0 0 100%;
}

.stat-card-decoration-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), transparent);
}

.stat-card-decoration-yellow {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), transparent);
}

.stat-card-decoration-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), transparent);
}

.stat-card-decoration-red {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), transparent);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.stat-icon-green {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.stat-icon-yellow {
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.stat-icon-blue {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.stat-icon-red {
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.stat-text {
    font-weight: 700;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.stat-text-green {
    color: #064e3b;
}

.stat-text-yellow {
    color: #78350f;
}

.stat-text-blue {
    color: #1e3a8a;
}

.stat-text-red {
    color: #7f1d1d;
}

/* Video Section Styles */
.video-section {
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Video Section Responsive */
@media (max-width: 768px) {
    .video-section {
        margin: 40px 0;
    }
}

@media (max-width: 480px) {
    .video-section {
        margin: 30px 0;
    }
}

@media (max-width: 375px) {
    .video-section {
        margin: 20px 0 !important;
        padding: 0 !important;
    }

    .video-section .container>div {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

.video-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0fdf4 100%);
    z-index: -1;
}

.video-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.video-title {
    color: #1e293b;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.video-description {
    color: #64748b;
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: flow-root;
    /* Create new block formatting context */
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #000;
    margin-bottom: 20px;
    /* Add space after video */
}

/* Fix video wrapper on small screens */
@media (max-width: 375px) {
    .video-wrapper {
        padding-bottom: 56.25%;
        margin-bottom: 15px !important;
    }
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b, #334155);
}

.video-placeholder-content {
    text-align: center;
    color: white;
}

.video-placeholder-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.video-placeholder h3 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    font-weight: 600;
}

.video-placeholder p {
    margin: 0;
    opacity: 0.8;
    font-size: 1.1em;
}

.main-video {
    position: absolute;
    top: 0;
    left: 0;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.gallery-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-bg-decoration-left {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.gallery-bg-decoration-right {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-title {
    font-size: 2.8em;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}

.gallery-subtitle {
    font-size: 1.3em;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.gallery-subtitle strong {
    color: #6366f1;
}

/* Gallery Grid */
.modern-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Gallery Cards */
.gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.gallery-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    color: white;
}

.gallery-badge-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.gallery-badge-green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
}

.gallery-badge-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3);
}

.gallery-badge-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.gallery-badge-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.3);
}

.gallery-badge-yellow {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.3);
}

.gallery-badge-icon {
    vertical-align: middle;
    margin-right: 5px;
}

.gallery-card-content {
    padding: 25px;
}

.gallery-card-title {
    color: #1e293b;
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 700;
}

.gallery-card-description {
    color: #64748b;
    line-height: 1.6;
}

.gallery-card-feature {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-feature-green {
    color: #10b981;
}

.gallery-feature-blue {
    color: #6366f1;
}

.gallery-feature-pink {
    color: #ec4899;
}

.gallery-feature-darkblue {
    color: #2563eb;
}

.gallery-feature-red {
    color: #dc2626;
}

.gallery-feature-yellow {
    color: #fbbf24;
}

.gallery-feature-text {
    font-weight: 600;
}

.gallery-rating-stars {
    display: flex;
}

/* Gallery Stats Section */
.gallery-stats-container {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.gallery-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.gallery-stat-number {
    font-size: 2.5em;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.gallery-stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
}

/* Student Section */
.student-section {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.student-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.student-bg-decoration-left {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.student-bg-decoration-right {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.student-header {
    text-align: center;
    margin-bottom: 60px;
}

.student-title {
    font-size: 2.8em;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}

.student-subtitle {
    font-size: 1.3em;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.student-subtitle strong {
    color: #8b5cf6;
}

/* Student Cards Grid */
.student-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Student Card */
.student-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.student-card-special {
    border: 3px solid #8b5cf6;
}

.student-card-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    border-radius: 50%;
    opacity: 0.1;
}

.student-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.student-card-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.student-card-icon svg {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
}

/* Responsive styles for student-card-icon */
@media (max-width: 768px) {
    .student-card-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
    }

    .student-card-icon svg {
        width: 35px !important;
        height: 35px !important;
        max-width: 35px !important;
        max-height: 35px !important;
    }
}

@media (max-width: 480px) {
    .student-card-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        min-height: 55px;
    }

    .student-card-icon svg {
        width: 32px !important;
        height: 32px !important;
        max-width: 32px !important;
        max-height: 32px !important;
    }
}

@media (max-width: 375px) {
    .student-card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }

    .student-card-icon svg {
        width: 30px !important;
        height: 30px !important;
        max-width: 30px !important;
        max-height: 30px !important;
    }
}

.student-icon-purple {
    background: linear-gradient(135deg, #e9d5ff, #c084fc);
}

.student-icon-blue {
    background: linear-gradient(135deg, #dbeafe, #93c5fd);
}

.student-icon-green {
    background: linear-gradient(135deg, #dcfce7, #86efac);
}

.student-card-title {
    color: #1e293b;
    font-size: 1.6em;
    margin: 0;
}

/* Student Discount Badge */
.student-discount-badge {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.student-discount-percent {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 5px;
}

.student-discount-text {
    font-size: 1.2em;
    font-weight: 600;
}

/* Student Price List */
.student-price-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 10px;
}

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

.student-price-text strong {
    color: #1e293b;
}

.student-price-old {
    color: #64748b;
    text-decoration: line-through;
    margin-left: 10px;
}

/* WG Service */
.student-card-description {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
}

.wg-price-badge {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.wg-price-content {
    text-align: center;
    margin-bottom: 15px;
}

.wg-price-label {
    color: #92400e;
    font-size: 1.1em;
    font-weight: 600;
}

.wg-price-amount {
    font-size: 2.5em;
    color: #d97706;
    font-weight: 800;
    margin: 10px 0;
}

/* Service List */
.student-service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

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

.student-service-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.student-service-text {
    color: #475569;
}

/* District List */
.district-title {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.district-item {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 10px;
}

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

.district-blue {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-left: 4px solid #3b82f6;
}

.district-blue strong {
    color: #1e3a8a;
}

.district-yellow {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-left: 4px solid #f59e0b;
}

.district-yellow strong {
    color: #92400e;
}

.district-pink {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    border-left: 4px solid #ec4899;
}

.district-pink strong {
    color: #831843;
}

.district-purple {
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
    border-left: 4px solid #a855f7;
}

.district-purple strong {
    color: #581c87;
}

.district-green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-left: 4px solid #10b981;
}

.district-green strong {
    color: #14532d;
}

.district-red {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-left: 4px solid #ef4444;
}

.district-red strong {
    color: #991b1b;
}

.district-description {
    color: #64748b;
    font-size: 0.9em;
    margin-top: 5px;
}

/* Semester Special Section */
.semester-special-container {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 25px;
    padding: 50px 40px;
    margin: 50px 0;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.semester-special-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.semester-special-title {
    text-align: center;
    color: white;
    font-size: 2.2em;
    margin-bottom: 40px;
    font-weight: 700;
}

.semester-special-icon {
    vertical-align: middle;
    margin-right: 15px;
}

.semester-special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: 30px;
}

.semester-special-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.semester-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.semester-icon-yellow {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.semester-icon-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.semester-card-title {
    color: #1e293b;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.semester-card-subtitle {
    color: #64748b;
    margin-bottom: 20px;
}

.semester-badge {
    padding: 15px;
    border-radius: 12px;
}

.semester-badge-green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.semester-badge-red {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.semester-badge-main {
    font-size: 1.8em;
    font-weight: 800;
    margin: 0;
}

.semester-badge-green .semester-badge-main {
    color: #14532d;
}

.semester-badge-red .semester-badge-main {
    color: #991b1b;
}

.semester-badge-sub {
    font-weight: 600;
    margin: 5px 0 0 0;
}

.semester-badge-green .semester-badge-sub {
    color: #166534;
}

.semester-badge-red .semester-badge-sub {
    color: #7f1d1d;
}

/* Student Tips and Unis Grid */
.student-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Tips Card */
.tips-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.tips-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.tips-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tips-card-title {
    color: #1e293b;
    font-size: 1.5em;
    margin: 0;
}

/* Tips List Items */
.tips-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 10px;
}

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

.tips-item-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.tips-item-content strong {
    color: #1e293b;
}

.tips-item-description {
    color: #64748b;
    font-size: 0.9em;
}

/* Partner Unis Card */
.unis-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.unis-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.unis-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dbeafe, #93c5fd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unis-card-title {
    color: #1e293b;
    font-size: 1.5em;
    margin: 0;
}

.unis-card-description {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Unis List */
.uni-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 10px;
}

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

.uni-item strong {
    color: #1e293b;
}

.uni-item-blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.uni-item-green {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.uni-item-yellow {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.uni-item-pink {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.uni-item-purple {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
}

/* Student CTA Section */
.student-cta-section {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.student-cta-title {
    color: white;
    font-size: 2em;
    margin-bottom: 20px;
}

.student-cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.student-cta-button,
a.student-cta-button {
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.student-cta-button-white,
a.student-cta-button-white {
    background: white;
    color: #7c3aed;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.student-cta-button-white:hover,
a.student-cta-button-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    color: #6d28d9;
}

.student-cta-button-green,
a.student-cta-button-green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.student-cta-button-green:hover,
a.student-cta-button-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
}

.student-cta-button-icon {
    vertical-align: middle;
    margin-right: 10px;
}

/* Mobile Responsive for Student CTA Section */
@media (max-width: 768px) {
    .student-cta-section {
        padding: 40px 30px;
        border-radius: 16px;
        margin-top: 40px;
    }

    .student-cta-title {
        font-size: 1.7em;
        margin-bottom: 15px;
    }

    .student-cta-description {
        font-size: 1.05em;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .student-cta-buttons {
        gap: 15px;
    }

    .student-cta-button,
    a.student-cta-button {
        padding: 15px 30px;
        font-size: 1.05em;
    }

    .student-cta-button-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .student-cta-section {
        padding: 30px 20px;
        border-radius: 12px;
        margin-top: 30px;
    }

    .student-cta-title {
        font-size: 1.4em;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .student-cta-description {
        font-size: 0.95em;
        margin-bottom: 20px;
        padding: 0;
    }

    .student-cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .student-cta-button,
    a.student-cta-button {
        padding: 14px 25px;
        font-size: 1em;
        width: 100%;
        justify-content: center;
    }

    .student-cta-button-white:hover,
    a.student-cta-button-white:hover,
    .student-cta-button-green:hover,
    a.student-cta-button-green:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 375px) {
    .student-cta-section {
        padding: 25px 15px;
        border-radius: 10px;
        margin-top: 25px;
        box-shadow: 0 15px 40px rgba(139, 92, 246, 0.25);
    }

    .student-cta-title {
        font-size: 1.25em;
        margin-bottom: 10px;
    }

    .student-cta-description {
        font-size: 0.9em;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .student-cta-buttons {
        gap: 10px;
    }

    .student-cta-button,
    a.student-cta-button {
        padding: 12px 20px;
        font-size: 0.95em;
        border-radius: 10px;
    }

    .student-cta-button-icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }

    .student-cta-button-white,
    a.student-cta-button-white {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .student-cta-button-green,
    a.student-cta-button-green {
        box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
    }
}

/* Entruempelung List Checkmarks */
.entruempelung-list li span {
    color: #10b981;
}

/* Lagerung Section */
.lagerung-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 60px 0;
}

.lagerung-header {
    text-align: center;
    margin-bottom: 50px;
}

.lagerung-title {
    color: #1e293b;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.lagerung-subtitle {
    color: #475569;
    font-size: 1.15em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.lagerung-features {
    display: grid;
    gap: 40px;
    margin-bottom: 50px;
}

.lagerung-feature {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.lagerung-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.lagerung-feature-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.lagerung-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lagerung-icon svg {
    width: 45px;
    height: 45px;
}

.lagerung-feature h3 {
    color: #1e293b;
    font-size: 1.5em;
    margin: 0;
}

.lagerung-locations {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 25px;
    border-radius: 20px;
    margin: 20px 0;
}

.lagerung-locations-title {
    color: #92400e;
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.lagerung-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.location-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.location-card strong {
    color: #1e293b;
    font-size: 1.1em;
    display: block;
    margin-bottom: 10px;
}

.location-card p {
    color: #64748b;
    margin: 5px 0;
    font-size: 0.95em;
}

.location-card-highlight {
    color: #6366f1;
    font-weight: 600;
}

.lagerung-feature-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.security-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin: 10px 0;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.security-item:hover {
    transform: translateX(5px);
}

.security-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-icon svg {
    width: 24px;
    height: 24px;
}

.security-text {
    color: #1e293b;
    font-size: 1.05em;
}

.security-text strong {
    font-weight: 600;
}

.pricing-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.pricing-box {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-box:hover {
    border-color: #6366f1;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.pricing-box h4 {
    color: #1e293b;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.pricing-size {
    color: #6366f1;
    font-weight: 700;
    font-size: 1.2em;
    margin: 10px 0;
}

.pricing-ideal {
    color: #64748b;
    font-size: 0.95em;
    margin: 10px 0;
}

.pricing-amount {
    color: #f59e0b;
    font-size: 1.5em;
    font-weight: 700;
    margin-top: 15px;
}

.special-banner {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 50px 40px;
    border-radius: 30px;
    margin: 50px 0;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.special-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.special-title {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 40px;
    font-weight: 700;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.special-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.special-item-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.special-item h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.special-highlight {
    font-size: 1.2em;
    margin: 10px 0;
}

.special-cta {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.special-cta-text {
    font-size: 1.3em;
    font-weight: 700;
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-gradient-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.contact-header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-header-title {
    color: #1e293b;
    font-size: 1.6em;
    margin: 0;
    font-weight: 700;
}

/* Office Address */
.office-address-box {
    margin-bottom: 30px;
    padding: 20px;
    background: #fef3c7;
    border-radius: 15px;
}

.office-address-title {
    color: #92400e;
    margin-bottom: 12px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-address-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #78350f;
    margin: 0;
}

.office-metro-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 12px;
    background: white;
    border-radius: 20px;
    font-weight: 600;
}

/* Opening Hours */
.opening-hours-section {
    margin-bottom: 30px;
}

.opening-hours-title {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.opening-hours-table {
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
}

.opening-hours-table table {
    width: 100%;
    color: #475569;
}

.opening-hours-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.opening-hours-table tr:last-child {
    border-bottom: none;
}

.opening-hours-table td {
    padding: 8px 0;
}

.opening-hours-table td:first-child {
    font-weight: 600;
}

.opening-hours-table td:last-child {
    text-align: right;
    font-weight: 700;
}

.opening-hours-open {
    color: #059669;
}

.opening-hours-appointment {
    color: #f59e0b;
}

/* Direct Contact */
.direct-contact-section {
    margin-bottom: 30px;
}

.direct-contact-title {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.direct-contact-box {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 20px;
    border-radius: 12px;
}

.direct-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #14532d;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 1.15em;
    font-weight: 600;
}

.direct-contact-link:last-child {
    margin-bottom: 0;
}

.direct-contact-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Emergency Hotline */
.emergency-hotline {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.emergency-hotline-title {
    margin-bottom: 12px;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.emergency-hotline-link {
    color: white;
    text-decoration: none;
}

.emergency-hotline-number {
    font-size: 2em;
    font-weight: 800;
    margin: 10px 0;
}

.emergency-hotline-text {
    font-size: 1.1em;
    opacity: 0.95;
}

/* Trust Badges Card */
.trust-badges-card {
    margin-top: 30px;
    padding: 30px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.trust-badges-title {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.4em;
    text-align: center;
    font-weight: 700;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.trust-badge-item {
    padding: 12px;
    border-radius: 12px;
    text-align: center;
}

.trust-badge-blue {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.trust-badge-green {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.trust-badge-yellow {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.trust-badge-pink {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.trust-badge-number {
    font-size: 1.8em;
    font-weight: 800;
}

.trust-badge-blue .trust-badge-number {
    color: #0284c7;
}

.trust-badge-green .trust-badge-number {
    color: #16a34a;
}

.trust-badge-yellow .trust-badge-number {
    color: #d97706;
}

.trust-badge-pink .trust-badge-number {
    color: #db2777;
}

.trust-badge-label {
    font-size: 0.9em;
}

.trust-badge-blue .trust-badge-label {
    color: #0c4a6e;
}

.trust-badge-green .trust-badge-label {
    color: #14532d;
}

.trust-badge-yellow .trust-badge-label {
    color: #78350f;
}

.trust-badge-pink .trust-badge-label {
    color: #831843;
}

.trust-badges-footer {
    margin-top: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    text-align: center;
}

.trust-badges-footer p {
    color: #475569;
    margin: 0;
}

.trust-badges-footer strong {
    color: #1e293b;
}

.trust-badges-footer .check-text {
    color: #10b981;
    font-weight: 600;
}

/* Google Maps */
.google-maps-container {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.google-maps-iframe {
    border: 0;
    width: 100%;
    height: 400px;
}

/* Footer Styles */
footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

footer h3 {
    margin-bottom: 20px;
}

.footer-description {
    line-height: 1.8;
}

.footer-social {
    margin-top: 20px;
}

.footer-social-icons {
    margin-top: 10px;
}

footer ul {
    line-height: 2;
}

footer a {
    color: white;
    text-decoration: none;
}

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

.footer-award {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #10b981;
    text-decoration: none;
}

.footer-rating {
    margin-top: 15px;
    color: var(--accent-color);

    /* Lagerung Section Media Queries */
    @media (max-width: 768px) {
        .lagerung-title {
            font-size: 1.8em;
        }

        .lagerung-subtitle {
            font-size: 1.05em;
            padding: 0 20px;
        }

        .lagerung-feature {
            padding: 30px 20px;
        }

        .lagerung-feature-header {
            flex-direction: column;
            text-align: center;
        }

        .lagerung-icon {
            width: 70px;
            height: 70px;
        }

        .lagerung-icon svg {
            width: 35px;
            height: 35px;
        }

        .lagerung-feature h3 {
            font-size: 1.3em;
        }

        .lagerung-locations-grid {
            grid-template-columns: 1fr;
        }

        .security-item {
            padding: 12px;
        }

        .security-text {
            font-size: 0.95em;
        }

        .pricing-boxes {
            grid-template-columns: 1fr;
        }

        .special-banner {
            padding: 40px 25px;
        }

        .special-title {
            font-size: 1.5em;
        }

        .special-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .lagerung-section {
            padding: 40px 0;
        }

        .lagerung-title {
            font-size: 1.5em;
            padding: 0 15px;
        }

        .lagerung-feature {
            border-radius: 20px;
            padding: 25px 15px;
        }

        .location-card {
            padding: 15px;
        }

        .security-icon {
            width: 35px;
            height: 35px;
        }

        .security-icon svg {
            width: 20px;
            height: 20px;
        }

        .pricing-box {
            padding: 20px;
        }

        .special-banner {
            border-radius: 20px;
            padding: 30px 20px;
        }

        .special-banner::before {
            display: none;
        }
    }

    /* Critical breakpoint for smallest devices (375px) */
    @media (max-width: 375px) {
        .lagerung-section {
            padding: 30px 0;
        }

        .lagerung-title {
            font-size: 1.3em;
            padding: 0 10px;
        }

        .lagerung-subtitle {
            font-size: 0.95em;
            padding: 0 10px;
        }

        .lagerung-feature {
            padding: 20px 12px;
            margin-bottom: 15px;
        }

        .lagerung-feature h3 {
            font-size: 1.1em;
        }

        .lagerung-icon {
            width: 60px;
            height: 60px;
        }

        .lagerung-icon svg {
            width: 30px;
            height: 30px;
        }

        .location-card {
            padding: 12px;
            font-size: 0.9em;
        }

        .security-item {
            padding: 10px;
        }

        .security-text {
            font-size: 0.85em;
        }

        .pricing-box {
            padding: 15px;
        }

        .pricing-box h4 {
            font-size: 1em;
        }

        .special-banner {
            padding: 25px 15px;
        }

        .special-title {
            font-size: 1.2em;
        }

        .special-item {
            font-size: 0.9em;
            padding: 10px;
        }
    }

    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(16, 185, 129, 0.9);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.custom-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(16, 185, 129, 1);
}

.video-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 0 20px;
}

/* Video Benefits Responsive */
@media (max-width: 768px) {
    .video-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .video-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
        margin-top: 20px;
    }

    .video-benefit {
        padding: 15px 10px;
    }

    .video-benefit h4 {
        font-size: 0.95em;
    }

    .video-benefit p {
        font-size: 0.85em;
    }
}

@media (max-width: 375px) {
    .video-benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 0 5px !important;
        margin-top: 15px !important;
        margin-bottom: 30px !important;
        /* Add space after grid */
    }

    .video-benefit {
        padding: 12px 8px !important;
        border-radius: 12px;
        margin-bottom: 0 !important;
        min-height: auto !important;
    }

    .video-benefit-icon {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 10px !important;
    }

    .video-benefit-icon svg {
        width: 20px;
        height: 20px;
    }

    .video-benefit h4 {
        font-size: 0.85em !important;
        margin-bottom: 5px !important;
    }

    .video-benefit p {
        font-size: 0.75em !important;
        line-height: 1.3 !important;
    }
}

.video-benefit {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.video-benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-benefit-icon-blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.video-benefit-icon-green {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.video-benefit-icon-yellow {
    background: linear-gradient(135deg, #fefce8, #fef3c7);
}

.video-benefit-icon-red {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.video-benefit h4 {
    color: #1e293b;
    font-size: 1.1em;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.video-benefit p {
    color: #64748b;
    font-size: 0.95em;
    margin: 0;
    line-height: 1.5;
}

.video-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    clear: both;
}

/* Remove all margins on non-desktop screens */
@media (max-width: 1024px) {
    .video-cta {
        margin: 0 !important;
        padding-top: 0 !important;
    }
}

.video-cta-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.video-cta h3 {
    color: #1e293b;
    font-size: 1.5em;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.video-cta p {
    color: #64748b;
    margin: 0 0 25px 0;
    font-size: 1.1em;
}

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

.video-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.video-cta-btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.video-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #1e293b;
    padding: 15px 30px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.video-cta-btn-secondary:hover {
    background: #f8fafc;
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Ensure no overlap between video sections */
.video-cta {
    display: block;
    overflow: hidden;
}

@media (max-width: 375px) {

    /* Clear fix for small screens */
    .video-benefits-grid {
        display: grid !important;
        position: relative !important;
        z-index: 1;
        margin-top: 30px !important;
        /* Space from video */
    }

    .video-cta {
        display: block !important;
        position: relative !important;
        z-index: 1;
        clear: both !important;
        margin: 0 !important;
        padding-top: 0 !important;
    }

    /* Ensure video container doesn't overflow */
    .video-section .container {
        overflow: visible !important;
    }
}

/* Video CTA Responsive Styles */
@media (max-width: 768px) {
    .video-cta {
        margin: 0 !important;
        padding-top: 0 !important;
    }

    .video-cta-box {
        padding: 25px 20px;
    }

    .video-cta h3 {
        font-size: 1.3em;
    }

    .video-cta p {
        font-size: 1em;
    }

    .video-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .video-cta-btn-primary,
    .video-cta-btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .video-cta {
        margin: 0 !important;
        padding: 0 10px;
    }

    .video-cta-box {
        padding: 20px 15px;
    }

    .video-cta-btn-primary,
    .video-cta-btn-secondary {
        padding: 13px 25px;
        font-size: 15px;
    }
}

/* Discount Section Styles */
.discount-section-wrapper {
    background: #f8fafc;
}

.discount-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

/* Discount section responsive */
@media (max-width: 768px) {
    .discount-section {
        border-radius: 15px !important;
    }

    .discount-section [style*="padding: 30px 20px"] {
        padding: 20px 15px !important;
    }
}

@media (max-width: 480px) {
    .discount-section {
        border-radius: 12px !important;
    }

    .discount-section [style*="padding: 30px 20px"] {
        padding: 15px 10px !important;
    }

    .discount-section [style*="margin-bottom: 50px"] {
        margin-bottom: 30px !important;
    }
}

@media (max-width: 375px) {
    .discount-section {
        border-radius: 10px !important;
    }

    .discount-section [style*="padding: 30px 20px"] {
        padding: 12px 8px !important;
    }

    .discount-section [style*="margin-bottom: 50px"] {
        margin-bottom: 20px !important;
    }

    /* Hide decorative elements on small screens */
    .discount-section>[style*="position: absolute"] {
        display: none !important;
    }
}

.discount-decoration-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.discount-decoration-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.discount-content {
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.discount-header {
    text-align: center;
    margin-bottom: 50px;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    animation: pulse 2s infinite;
}

.discount-title {
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.discount-highlight {
    color: #fbbf24;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(220, 38, 38, 0.6);
    }

    100% {
        box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    }
}

.discount-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1em, 3vw, 1.3em);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 10px;
}

.discount-description .highlight-green {
    color: #10b981;
}

.discount-description .highlight-yellow {
    color: #fbbf24;
}

/* Discount Grid */
.discount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.discount-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.discount-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8em;
    font-weight: 700;
}

.discount-card-badge-red {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.discount-card-badge-green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.discount-card-header {
    margin-bottom: 25px;
}

.discount-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.discount-card-icon-yellow {
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
}

.discount-card-icon-green {
    background: linear-gradient(135deg, #dcfce7, #10b981);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.discount-card-title {
    color: #1e293b;
    font-size: 1.5em;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.discount-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.discount-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.discount-list-item:last-child {
    border-bottom: none;
}

.discount-list-label {
    color: #475569;
    font-weight: 500;
}

.discount-list-badge {
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 700;
}

.badge-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.badge-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.badge-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.badge-yellow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.service-list-item:last-child {
    border-bottom: none;
}

.service-icon-wrapper {
    width: 40px;
    height: 40px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-text strong {
    color: #1e293b;
    font-weight: 600;
}

.service-text p {
    color: #64748b;
    font-size: 0.9em;
    margin: 2px 0 0 0;
}

/* Form Controls for jq_form */
.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1em;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control::placeholder {
    color: #94a3b8;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    font-weight: 700;
    font-size: 15px;
    color: #dc2626;
    padding-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 25px;
}

/* Call to Action Section */
.cta-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cta-title {
    color: #1e293b;
    font-size: 1.8em;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.cta-subtitle {
    color: #64748b;
    font-size: 1.1em;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.cta-subtitle strong {
    color: #dc2626;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.9em, 2.5vw, 1.1em);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

.cta-button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: slideGlow 2s infinite;
}

@keyframes slideGlow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.cta-button-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.cta-button-text span:last-child {
    font-size: 1.1em;
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #1e293b;
    padding: 15px 25px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9em, 2.5vw, 1.1em);
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.cta-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 0.9em;
    color: #64748b;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Services Overview Section */
.services-overview {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Services Overview Responsive */
@media (max-width: 768px) {
    .services-overview {
        padding: 30px 20px;
        border-radius: 12px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .services-overview {
        padding: 20px 15px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 375px) {
    .services-overview {
        padding: 15px 10px;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
}

.services-overview-title {
    text-align: center;
    color: #1e293b;
    font-size: 1.8em;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .services-overview-title {
        font-size: 1.5em;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .services-overview-title {
        font-size: 1.3em;
        margin-bottom: 20px;
    }
}

@media (max-width: 375px) {
    .services-overview-title {
        font-size: 1.2em;
        margin-bottom: 15px;
        padding: 0 5px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 15px;
    }
}

@media (max-width: 375px) {
    .services-grid {
        gap: 12px;
    }
}

.service-card {
    background: #f8fafc;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .service-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 15px;
        border-radius: 8px;
    }
}

@media (max-width: 375px) {
    .service-card {
        padding: 12px 10px;
        border-radius: 6px;
    }
}

.service-card-blue {
    border-left: 4px solid #3b82f6;
}

.service-card-green {
    border-left: 4px solid #10b981;
}

.service-card-red {
    border-left: 4px solid #dc2626;
}

.service-card-purple {
    border-left: 4px solid #7c3aed;
}

.service-card-cyan {
    border-left: 4px solid #0891b2;
}

.service-card-orange {
    border-left: 4px solid #ea580c;
}

.service-card-title {
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 1.2em;
}

@media (max-width: 480px) {
    .service-card-title {
        font-size: 1.1em;
        margin-bottom: 8px;
    }
}

@media (max-width: 375px) {
    .service-card-title {
        font-size: 1em;
        margin-bottom: 6px;
    }
}

.service-card-text {
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .service-card-text {
        font-size: 0.95em;
        line-height: 1.5;
    }
}

@media (max-width: 375px) {
    .service-card-text {
        font-size: 0.9em;
        line-height: 1.4;
    }
}

.service-card-list {
    margin: 15px 0 0 0;
    padding: 0;
    list-style: none;
}

.service-card-list li {
    color: #475569;
    padding: 5px 0;
}

.price-box {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

@media (max-width: 480px) {
    .price-box {
        padding: 12px;
        margin-top: 12px;
    }
}

@media (max-width: 375px) {
    .price-box {
        padding: 10px 8px;
        margin-top: 10px;
        border-radius: 6px;
    }
}

.price-box-title {
    color: #1e293b;
    font-weight: bold;
}

@media (max-width: 375px) {
    .price-box-title {
        font-size: 0.95em;
    }
}

.price-box-list {
    margin: 10px 0 0 0;
    padding: 0 0 0 20px;
    color: #64748b;
}

@media (max-width: 375px) {
    .price-box-list {
        font-size: 0.85em;
        padding-left: 15px;
        margin-top: 8px;
    }

    .price-box-list li {
        margin-bottom: 4px;
    }
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

@media (max-width: 375px) {
    .insurance-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 10px;
    }
}

.insurance-item {
    background: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.insurance-item-title {
    color: #1e293b;
    font-size: 0.85em;
    display: block;
    font-weight: bold;
}

.insurance-item-text {
    color: #64748b;
    font-size: 0.8em;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

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

.team-stat-number {
    color: #1e293b;
    font-size: 1.3em;
    font-weight: bold;
}

.team-stat-label {
    color: #64748b;
    font-size: 0.9em;
}

.vehicle-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.vehicle-tag {
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85em;
    color: #475569;
}

.express-call-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #ea580c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.express-call-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

/* Professional CTA Section */
.professional-cta {
    margin: 40px 0;
    padding: 35px;
    background: #1e293b;
    border-radius: 8px;
    text-align: center;
}

.professional-cta-title {
    color: white;
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 600;
}

.professional-cta-subtitle {
    color: #94a3b8;
    font-size: 1.1em;
    margin-bottom: 25px;
}

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

.professional-cta-btn-primary {
    padding: 14px 28px;
    background: #10b981;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.2s;
    display: inline-block;
}

.professional-cta-btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.professional-cta-btn-secondary {
    padding: 14px 28px;
    background: white;
    color: #1e293b;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05em;
    border: 2px solid #e5e7eb;
    transition: all 0.2s;
    display: inline-block;
}

.professional-cta-btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Umzugsservice Section */
.section-service {
    background: #f8fafc;
}

.section-heading {
    color: #1e293b;
    font-weight: 700;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-subtitle-large {
    font-size: 1.15em;
    line-height: 1.7;
    margin-bottom: 40px;
}

.service-cards-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-feature-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-feature-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-card-blue {
    border-left: 4px solid #2563eb;
}

.service-card-green {
    border-left: 4px solid #10b981;
}

.service-card-purple {
    border-left: 4px solid #8b5cf6;
}

.service-icon-wrapper {
    flex-shrink: 0;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-box-blue {
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
}

.service-icon-box-green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.service-icon-box-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.service-content {
    flex: 1;
}

.service-content-title {
    color: #1e293b;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content-text {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: #f1f5f9;
    border-radius: 6px;
}

.service-feature-text {
    color: #334155;
    font-size: 0.95em;
}

.service-feature-item-green {
    background: #f0fdf4;
}

.service-feature-item-purple {
    background: #faf5ff;
}

/* Statistics Section */
.statistics-section {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    color: white;
}

.statistics-title {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 30px;
    font-weight: 700;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: center;
}

.statistic-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.statistic-number {
    font-size: 2.5em;
    font-weight: 700;
}

.statistic-number-blue {
    color: #60a5fa;
}

.statistic-number-green {
    color: #34d399;
}

.statistic-number-purple {
    color: #a78bfa;
}

.statistic-number-orange {
    color: #fb923c;
}

.statistic-label {
    margin-top: 10px;
    font-size: 1.1em;
}

.statistic-sublabel {
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 5px;
}

/* Image Gallery Section */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
}

.gallery-caption h4 {
    margin: 0;
    font-size: 1.2em;
}

.gallery-caption p {
    margin: 5px 0 0 0;
    opacity: 0.9;
    font-size: 0.9em;
}

/* Start CTA Section */
.start-cta {
    margin: 40px 0;
    padding: 25px;
    background: #f0f9ff;
    border-radius: 12px;
    border: 2px solid #2563eb;
    text-align: center;
}

.start-cta-title {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.start-cta-subtitle {
    color: #475569;
    margin-bottom: 20px;
    font-size: 1.1em;
}

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

.start-cta-btn-primary {
    padding: 12px 30px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.start-cta-btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.start-cta-btn-secondary {
    padding: 12px 30px;
    background: white;
    color: #2563eb;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
}

.start-cta-btn-secondary:hover {
    background: #2563eb;
    color: white;
}

/* Special Transport Section */
.section-special {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-decoration-right {
    position: absolute;
    top: 0;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-decoration-left {
    position: absolute;
    bottom: 0;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.special-header {
    text-align: center;
    margin-bottom: 60px;
}

.special-title {
    font-weight: 800;
    font-size: 2.8em;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.special-subtitle {
    font-size: 1.25em;
    line-height: 1.7;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

/* Special Services Grid */
.special-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.special-service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
}

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

.special-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.special-icon-container {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.special-icon-red {
    background: #fef2f2;
}

.special-icon-cyan {
    background: #f0fdfa;
}

.special-icon-yellow {
    background: #fefce8;
}

.special-icon-green {
    background: #f0fdf4;
}

.special-price-value-cyan {
    color: #0891b2;
}

.special-price-value-yellow {
    color: #eab308;
}

.special-price-value-green {
    color: #16a34a;
}

.special-card-title {
    color: #0f172a;
    font-size: 1.4em;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

.special-card-subtitle {
    color: #64748b;
    margin: 5px 0 0 0;
    font-size: 0.95em;
}

.special-card-text {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1em;
}

.special-price-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.special-price-label {
    color: #64748b;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.special-price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.special-price-amount {
    color: #16a34a;
    font-weight: 700;
    font-size: 1.2em;
}

/* Адаптивные стили для секции Spezialtransporte & Premium Services */
@media (max-width: 768px) {
    .special-header {
        padding: 30px 20px;
    }

    .special-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .special-subtitle {
        font-size: 1.1em;
        margin-bottom: 25px;
    }

    .special-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .special-service-card {
        padding: 25px;
    }

    .special-card-icon {
        width: 60px;
        height: 60px;
    }

    .special-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .special-card-title {
        font-size: 1.3em;
    }

    .special-price-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .special-header {
        padding: 25px 15px;
    }

    .special-title {
        font-size: 1.5em;
    }

    .special-subtitle {
        font-size: 1em;
        line-height: 1.5;
    }

    .special-service-card {
        padding: 20px;
    }

    .special-card-header {
        gap: 15px;
        margin-bottom: 20px;
    }

    .special-card-icon {
        width: 50px;
        height: 50px;
    }

    .special-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .special-card-title {
        font-size: 1.2em;
    }

    .special-service-item {
        padding: 12px;
        font-size: 0.95em;
    }

    .special-card-premium {
        padding: 15px;
        font-size: 0.9em;
    }

    .special-price-amount {
        font-size: 1.2em;
    }

    .special-price-label {
        font-size: 0.85em;
    }
}

@media (max-width: 375px) {
    .special-header {
        padding: 20px 10px;
    }

    .special-title {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .special-subtitle {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .special-services-grid {
        gap: 15px;
        margin-bottom: 25px;
    }

    .special-service-card {
        padding: 15px;
        border-radius: 12px;
    }

    .special-card-header {
        gap: 10px;
        margin-bottom: 15px;
    }

    .special-card-icon {
        width: 40px;
        height: 40px;
    }

    .special-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .special-card-title {
        font-size: 1em;
    }

    .special-service-item {
        padding: 10px;
        font-size: 0.85em;
        gap: 10px;
    }

    .special-service-icon {
        width: 16px;
        height: 16px;
    }

    .special-card-premium {
        padding: 12px;
        font-size: 0.85em;
        border-radius: 8px;
    }

    .special-price-grid {
        gap: 8px;
    }

    .special-price-amount {
        font-size: 1em;
    }

    .special-price-label {
        font-size: 0.8em;
    }
}

.special-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.special-price-item {
    text-align: center;
}

.special-price-item-middle {
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
}

.special-price-value {
    color: #dc2626;
    font-size: 1.5em;
    font-weight: 700;
}

.special-price-desc {
    color: #64748b;
    font-size: 0.85em;
    margin-top: 5px;
}

.special-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.special-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85em;
    font-weight: 500;
}

.special-services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.special-service-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.special-service-text {
    color: #475569;
    font-size: 0.95em;
}

/* Premium Services Stats */
.premium-stats-container {
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px;
    margin: 50px 0;
}

.premium-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-value {
    color: #3b82f6;
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-title {
    color: #0f172a;
    font-weight: 600;
    font-size: 1.05em;
}

.stat-subtitle {
    color: #64748b;
    font-size: 0.9em;
    margin-top: 4px;
}

/* Адаптивные стили для Premium Stats */
@media (max-width: 768px) {
    .premium-stats-container {
        padding: 30px 20px;
        margin: 30px 0;
    }

    .premium-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-value {
        font-size: 2em;
        margin-bottom: 5px;
    }

    .stat-title {
        font-size: 1em;
    }

    .stat-subtitle {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .premium-stats-container {
        padding: 25px 15px;
        margin: 25px 0;
        border-radius: 12px;
    }

    .premium-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-value {
        font-size: 1.5em;
        margin-bottom: 4px;
    }

    .stat-title {
        font-size: 0.95em;
    }

    .stat-subtitle {
        font-size: 0.8em;
        margin-top: 2px;
    }
}

@media (max-width: 375px) {
    .premium-stats-container {
        padding: 20px 10px;
        margin: 20px 0;
        border-radius: 10px;
    }

    .premium-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        row-gap: 20px;
    }

    .stat-value {
        font-size: 1.3em;
        margin-bottom: 3px;
        font-weight: 700;
    }

    .stat-title {
        font-size: 0.85em;
        font-weight: 600;
    }

    .stat-subtitle {
        font-size: 0.75em;
        margin-top: 2px;
    }
}

/* CTA Section */
.cta-wrapper {
    text-align: center;
    margin: 60px 0;
}

.cta-container {
    background: #0f172a;
    border-radius: 16px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.cta-heading {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 2em;
    font-weight: 700;
}

.cta-description {
    color: #cbd5e1;
    margin-bottom: 30px;
    font-size: 1.15em;
}

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

.cta-button-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid #3b82f6;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #60a5fa;
}

.cta-button-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Pricing Section */
.pricing-section {
    background: #f8fafc;
    padding: 80px 0;
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    color: #0f172a;
    font-weight: 800;
    font-size: 2.8em;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-size: 1.25em;
    line-height: 1.7;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.pricing-container {
    margin-bottom: 60px;
}

/* Horizontal Pricing Cards */
.pricing-card-horizontal {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.pricing-card-horizontal.premium {
    border: 2px solid #3b82f6;
    position: relative;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.pricing-card-grid {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 40px;
    align-items: center;
}

.pricing-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-badge-basic {
    background: #f1f5f9;
    color: #64748b;
}

.pricing-badge-premium {
    background: #eff6ff;
    color: #3b82f6;
}

.pricing-card-title {
    color: #0f172a;
    font-size: 1.4em;
    margin: 12px 0 8px 0;
    font-weight: 700;
}

.pricing-card-subtitle {
    color: #64748b;
    font-size: 0.9em;
}

.pricing-features-text {
    color: #64748b;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.pricing-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pricing-feature-item {
    color: #475569;
    font-size: 0.9em;
}

.pricing-feature-item.premium {
    font-weight: 500;
}

.pricing-cta-section {
    text-align: center;
    padding: 0 20px;
}

.pricing-amount-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    margin-bottom: 15px;
}

.pricing-currency {
    font-size: 1.1em;
    color: #64748b;
    font-weight: 500;
}

.pricing-currency.premium {
    color: #3b82f6;
}

.pricing-amount {
    font-size: 2.5em;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.pricing-period {
    color: #64748b;
    font-size: 0.9em;
    align-self: flex-end;
    margin-bottom: 6px;
}

.pricing-cta-button {
    display: block;
    padding: 12px 30px;
    background: #0f172a;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95em;
    white-space: nowrap;
}

.pricing-cta-button.premium {
    background: #3b82f6;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: #3b82f6;
    color: white;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
}

/* Business Card */
.pricing-card-business {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    position: relative;
    margin-bottom: 24px;
}

.business-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.business-subtitle {
    color: #64748b;
    font-size: 16px;
    margin: 0;
}

.business-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.business-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.business-feature-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.business-feature-text {
    color: #475569;
    font-size: 14px;
}

.business-price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
}

.business-currency {
    font-size: 18px;
    color: #64748b;
    font-weight: 500;
}

.business-amount {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
}

.business-period {
    color: #64748b;
    font-size: 14px;
}

.business-price-note {
    color: #64748b;
    margin: 4px 0 0 0;
    font-size: 12px;
}

.business-cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #0f172a;
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

/* Premium Features List */
.premium-features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    flex-grow: 1;
}

.premium-feature-item {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-feature-text {
    color: #475569;
    font-weight: 500;
}

.premium-highlight-box {
    background: #eff6ff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.premium-highlight-label {
    color: #3b82f6;
    font-size: 0.95em;
}

.premium-highlight-text {
    color: #0f172a;
    margin-top: 5px;
    font-weight: 600;
}

.premium-select-button {
    display: block;
    margin-top: auto;
    padding: 14px;
    background: #3b82f6;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1em;
}

/* Savings Section */
.savings-container {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    border: 1px solid #cbd5e1;
}

.savings-heading {
    text-align: center;
    color: #1e293b;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.savings-icon {
    vertical-align: middle;
    margin-right: 10px;
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.savings-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.savings-card-title {
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.savings-list {
    list-style: none;
    padding: 0;
}

.savings-list-item {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.discount-badge {
    background: #dcfce7;
    color: #16a34a;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9em;
}

.free-badge {
    background: #dbeafe;
    color: #2563eb;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85em;
}

.savings-text {
    color: #475569;
}

/* Pricing CTA Section */
.pricing-cta-container {
    text-align: center;
    margin: 40px 0;
}

.pricing-cta-title {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.6em;
}

.pricing-cta-subtitle {
    color: #475569;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.pricing-cta-button-green {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Savings Tips Section Styles */
.savings-tips-container {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    border: 1px solid #cbd5e1;
}

.savings-tips-title {
    text-align: center;
    color: #1e293b;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.savings-tips-icon {
    vertical-align: middle;
    margin-right: 10px;
}

.savings-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.savings-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.savings-card-title {
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.savings-list {
    list-style: none;
    padding: 0;
}

.savings-list-item {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.savings-badge {
    background: #dcfce7;
    color: #16a34a;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9em;
}

.savings-badge-blue {
    background: #dbeafe;
    color: #2563eb;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85em;
}

.savings-text {
    color: #475569;
}

/* Responsive Styles for Pricing Section */
@media (max-width: 768px) {
    .pricing-section {
        padding: 50px 0;
    }

    .pricing-header {
        margin-bottom: 40px;
    }

    .pricing-title {
        font-size: 2em;
    }

    .pricing-subtitle {
        font-size: 1em;
    }

    .pricing-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card-horizontal {
        padding: 25px;
    }

    .pricing-features-list {
        grid-template-columns: 1fr;
    }

    .pricing-cta-section {
        text-align: center;
        margin-top: 20px;
    }

    .pricing-amount-wrapper {
        justify-content: center;
    }

    .pricing-card-business .pricing-card-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .savings-tips-container {
        padding: 30px 20px;
    }

    .savings-tips-title {
        font-size: 1.4em;
    }

    .savings-tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .savings-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 40px 0;
    }

    .pricing-title {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .pricing-subtitle {
        font-size: 0.95em;
        line-height: 1.5;
    }

    .pricing-card-horizontal {
        padding: 20px;
        border-radius: 12px;
    }

    .pricing-badge {
        font-size: 0.8em;
        padding: 4px 8px;
    }

    .pricing-card-title {
        font-size: 1.2em;
    }

    .pricing-features-text {
        font-size: 0.9em;
    }

    .pricing-feature-item {
        font-size: 0.85em;
    }

    .pricing-amount {
        font-size: 2em;
    }

    .pricing-cta-button {
        padding: 12px 20px;
        font-size: 0.95em;
    }

    .savings-tips-container {
        padding: 25px 15px;
        border-radius: 8px;
        margin: 25px 0;
    }

    .savings-tips-title {
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    .savings-card {
        padding: 15px;
    }

    .savings-card-title {
        font-size: 1em;
    }

    .savings-list-item {
        padding: 6px 0;
        font-size: 0.9em;
    }

    .savings-badge {
        font-size: 0.8em;
        padding: 2px 6px;
    }
}

@media (max-width: 375px) {
    .pricing-section {
        padding: 30px 0;
    }

    .pricing-header {
        margin-bottom: 30px;
    }

    .pricing-title {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .pricing-subtitle {
        font-size: 0.85em;
        padding: 0 10px;
    }

    .pricing-container {
        margin-bottom: 30px;
    }

    .pricing-card-horizontal {
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .pricing-card-grid {
        gap: 15px;
    }

    .pricing-badge {
        font-size: 0.75em;
        padding: 3px 6px;
    }

    .pricing-card-title {
        font-size: 1em;
    }

    .pricing-card-subtitle {
        font-size: 0.8em;
    }

    .pricing-features-text {
        font-size: 0.85em;
        margin-bottom: 10px;
    }

    .pricing-feature-item {
        font-size: 0.8em;
        padding: 4px 0;
    }

    .pricing-amount-wrapper {
        margin-bottom: 15px;
    }

    .pricing-currency {
        font-size: 1.2em;
    }

    .pricing-amount {
        font-size: 1.5em;
    }

    .pricing-period {
        font-size: 0.8em;
    }

    .pricing-cta-button {
        padding: 10px 15px;
        font-size: 0.85em;
        width: 100%;
    }

    .popular-badge {
        font-size: 0.7em;
        padding: 4px 8px;
    }

    .pricing-card-business {
        padding: 15px;
    }

    .business-title {
        font-size: 1.2em;
    }

    .business-features-list {
        margin: 15px 0;
    }

    .business-feature-item {
        font-size: 0.8em;
        margin-bottom: 8px;
    }

    .business-amount {
        font-size: 1.5em;
    }

    .business-price-note {
        font-size: 0.75em;
    }

    .savings-tips-container {
        padding: 20px 10px;
        border-radius: 6px;
        margin: 20px 0;
    }

    .savings-tips-title {
        font-size: 1em;
        margin-bottom: 15px;
    }

    .savings-tips-icon {
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }

    .savings-tips-grid {
        gap: 15px;
    }

    .savings-card {
        padding: 12px;
        border-radius: 6px;
    }

    .savings-card-title {
        font-size: 0.9em;
        margin-bottom: 15px;
    }

    .savings-card-title svg {
        width: 18px;
        height: 18px;
    }

    .savings-list-item {
        padding: 5px 0;
        font-size: 0.8em;
        gap: 8px;
    }

    .savings-badge,
    .savings-badge-blue {
        font-size: 0.7em;
        padding: 2px 4px;
    }

    .savings-text {
        font-size: 0.85em;
    }

    .pricing-cta-container {
        margin: 30px 0;
        padding: 0 10px;
    }

    .pricing-cta-title {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .pricing-cta-subtitle {
        font-size: 0.85em;
        margin-bottom: 15px;
    }

    .pricing-cta-button-green {
        padding: 12px 20px;
        font-size: 0.9em;
        width: 100%;
        max-width: 300px;
    }
}

/* District Overview Section */
.district-overview-container {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.district-overview-title {
    color: #1e293b;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5em;
}

.district-links-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.district-link {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: #1e293b;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.district-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.district-number {
    padding: 2px 8px;
    border-radius: 12px;
    margin-right: 8px;
    font-size: 0.9em;
    color: white;
    display: inline-block;
}

.district-number-1 {
    background: #dc2626;
}

.district-number-2 {
    background: #2563eb;
}

.district-number-3 {
    background: #16a34a;
}

.district-number-10 {
    background: #059669;
}

.district-number-22 {
    background: #7c3aed;
}

.district-more {
    display: inline-block;
    padding: 10px 20px;
    color: #64748b;
    font-style: italic;
}

/* Responsive Styles for District Overview */
@media (max-width: 768px) {
    .district-overview-container {
        padding: 25px 20px;
        margin: 30px 0;
    }

    .district-overview-title {
        font-size: 1.3em;
        margin-bottom: 25px;
    }

    .district-link {
        padding: 8px 16px;
        font-size: 0.95em;
    }

    .district-number {
        font-size: 0.85em;
        padding: 2px 6px;
        margin-right: 6px;
    }
}

@media (max-width: 480px) {
    .district-overview-container {
        padding: 20px 15px;
        margin: 25px 0;
        border-radius: 10px;
    }

    .district-overview-title {
        font-size: 1.1em;
        margin-bottom: 20px;
    }

    .district-links-wrapper {
        gap: 8px;
    }

    .district-link {
        padding: 7px 14px;
        font-size: 0.9em;
        border-radius: 20px;
    }

    .district-number {
        font-size: 0.8em;
        padding: 1px 5px;
        margin-right: 5px;
        border-radius: 10px;
    }

    .district-more {
        padding: 7px 14px;
        font-size: 0.85em;
    }
}

@media (max-width: 375px) {
    .district-overview-container {
        padding: 15px 10px;
        margin: 20px 0;
        border-radius: 8px;
    }

    .district-overview-title {
        font-size: 1em;
        margin-bottom: 15px;
        padding: 0 5px;
    }

    .district-links-wrapper {
        gap: 6px;
    }

    .district-link {
        padding: 6px 10px;
        font-size: 0.8em;
        border-radius: 18px;
        margin-bottom: 2px;
    }

    .district-number {
        font-size: 0.75em;
        padding: 1px 4px;
        margin-right: 4px;
        border-radius: 8px;
    }

    .district-more {
        padding: 6px 10px;
        font-size: 0.75em;
        width: 100%;
        text-align: center;
    }
}

/* Bezirke Section */
.bezirke-section {
    background: white;
}

.bezirke-heading {
    color: #1e293b;
    font-weight: 700;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.bezirke-subtitle {
    font-size: 1.15em;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #475569;
}

/* Austria Coverage Banner */
.austria-coverage-banner {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    padding: 30px;
    border-radius: 12px;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.austria-coverage-icon {
    margin-bottom: 15px;
}

.austria-coverage-title {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.austria-coverage-subtitle {
    font-size: 1.1em;
    opacity: 0.95;
}

/* City Cards Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.city-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.city-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border-radius: 0 0 10px 0;
    font-size: 0.8em;
}

.city-badge-wien {
    background: #dc2626;
}

.city-badge-salzburg {
    background: #2563eb;
}

.city-badge-graz {
    background: #16a34a;
}

.city-badge-linz {
    background: #7c3aed;
}

.city-badge-innsbruck {
    background: #ea580c;
}

.city-badge-klagenfurt {
    background: #0891b2;
}

.city-badge-eisenstadt {
    background: #eab308;
}

.city-badge-bregenz {
    background: #65a30d;
}

.city-badge-stpoelten {
    background: #4338ca;
}

.city-title {
    color: #1e293b;
    font-size: 1.1em;
    margin: 30px 0 10px 0;
}

.city-description {
    color: #64748b;
    font-size: 0.95em;
    line-height: 1.5;
}

.city-tags {
    margin-top: 10px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.city-tag {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8em;
}

.city-tag-red {
    background: #fee2e2;
    color: #991b1b;
}

.city-tag-blue {
    background: #dbeafe;
    color: #1e40af;
}

.city-tag-green {
    background: #dcfce7;
    color: #166534;
}

.city-tag-purple {
    background: #f3e8ff;
    color: #6b21a8;
}

.city-tag-orange {
    background: #fed7aa;
    color: #9a3412;
}

.city-tag-cyan {
    background: #cffafe;
    color: #155e75;
}

.city-tag-yellow {
    background: #fef3c7;
    color: #78350f;
}

.city-tag-lime {
    background: #ecfccb;
    color: #365314;
}

.city-tag-indigo {
    background: #e0e7ff;
    color: #312e81;
}

/* Districts Overview */
.districts-overview {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.districts-title {
    color: #1e293b;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5em;
}

.districts-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.district-link {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: #1e293b;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.district-number {
    padding: 2px 8px;
    border-radius: 12px;
    margin-right: 8px;
    font-size: 0.9em;
    color: white;
}

.district-number-1 {
    background: #dc2626;
}

.district-number-2 {
    background: #2563eb;
}

.district-number-3 {
    background: #16a34a;
}

.district-number-10 {
    background: #059669;
}

.district-number-22 {
    background: #7c3aed;
}

.districts-more {
    display: inline-block;
    padding: 10px 20px;
    color: #64748b;
    font-style: italic;
}

/* Austria CTA Section */
.austria-cta {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    color: white;
}

.austria-cta-icon {
    margin-bottom: 15px;
}

.austria-cta-title {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.austria-cta-subtitle {
    font-size: 1.1em;
    margin-bottom: 25px;
    opacity: 0.95;
}

.austria-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #1e293b;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s;
}

/* Reviews Section */
.reviews-section {
    background: #f8fafc;
}

.reviews-heading {
    color: #1e293b;
    font-weight: 700;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.reviews-subtitle {
    font-size: 1.15em;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #475569;
}

/* Trust Badge */
.trust-badge-container {
    text-align: center;
    margin-bottom: 40px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge-stars {
    display: flex;
    gap: 2px;
}

.trust-badge-rating {
    font-size: 1.3em;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
}

.trust-badge-text {
    color: #64748b;
    white-space: nowrap;
}

.trust-badge-separator {
    padding: 0 10px;
    color: #e2e8f0;
}

.trust-badge-count {
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
}

/* Reviews Container */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Reviews CTA */
.reviews-cta-container {
    text-align: center;
    margin: 60px auto 40px;
    padding: 20px;
    max-width: 800px;
}

.review-button {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 25px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 700;
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.review-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.review-button-icon {
    z-index: 1;
}

.review-button-text {
    z-index: 1;
    font-size: 1.1em;
}

.review-button-arrow {
    z-index: 1;
    animation: slideRight 1s infinite;
}

@keyframes slideRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.reviews-cta-description {
    margin-top: 20px;
    color: #64748b;
    font-size: 1em;
    font-weight: 500;
}

/* Blog Section */
.blog-section {
    background: white;
    padding: 80px 0;
}

.blog-heading {
    color: #1e293b;
    font-weight: 700;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.blog-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #475569;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Blog Container */
.blog-container {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

/* Blog CTA */
.blog-cta-container {
    text-align: center;
    margin: 60px auto 40px;
    padding: 20px;
    max-width: 800px;
}

.blog-button {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.blog-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.blog-button-icon {
    z-index: 1;
}

.blog-button-text {
    z-index: 1;
    font-size: 1.1em;
}

.blog-button-arrow {
    z-index: 1;
    animation: slideRight 1s infinite;
}

.blog-cta-description {
    margin-top: 20px;
    color: #64748b;
    font-size: 1em;
    font-weight: 500;
}

/* Statistics Section */
.statistics-section {
    background: #f8fafc;
}

.statistics-container {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.statistics-heading {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.statistic-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.statistic-number {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 10px;
}

.statistic-number-yellow {
    color: #fbbf24;
}

.statistic-number-green {
    color: #34d399;
}

.statistic-number-blue {
    color: #60a5fa;
}

.statistic-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.statistic-title {
    color: white;
    font-size: 1.1em;
}

.statistic-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

/* Statistics CTA */
.statistics-cta {
    text-align: center;
    margin: 40px 0;
}

.statistics-cta-title {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.statistics-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Responsive Styles for Statistics Section */
@media (max-width: 768px) {
    .statistics-section {
        padding: 30px 0;
    }

    .statistics-container {
        padding: 30px 20px;
        margin: 30px 0;
    }

    .statistics-heading {
        font-size: 1.5em;
        margin-bottom: 25px;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .statistic-card {
        padding: 15px;
    }

    .statistic-number {
        font-size: 2.2em;
    }

    .statistic-rating {
        justify-content: center;
    }

    .statistic-rating img {
        width: 25px;
        height: 25px;
    }

    .statistic-title {
        font-size: 0.95em;
    }

    .statistic-subtitle {
        font-size: 0.85em;
    }

    .statistics-cta {
        margin: 30px 0;
        padding: 0 20px;
    }

    .statistics-cta-title {
        font-size: 1.3em;
    }

    .statistics-cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .statistics-section {
        padding: 25px 0;
    }

    .statistics-container {
        padding: 25px 15px;
        margin: 25px 0;
        border-radius: 10px;
    }

    .statistics-heading {
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .statistic-card {
        padding: 12px;
        border-radius: 6px;
    }

    .statistic-number {
        font-size: 1.8em;
        margin-bottom: 8px;
    }

    .statistic-rating img {
        width: 20px;
        height: 20px;
    }

    .statistic-title {
        font-size: 0.85em;
        margin-top: 5px;
    }

    .statistic-subtitle {
        font-size: 0.75em;
        margin-top: 2px;
    }

    .statistics-cta {
        margin: 25px 0;
        padding: 0 15px;
    }

    .statistics-cta-title {
        font-size: 1.1em;
        margin-bottom: 15px;
    }

    .statistics-cta-button {
        padding: 10px 25px;
        font-size: 0.95em;
    }
}

@media (max-width: 375px) {
    .statistics-section {
        padding: 20px 0;
    }

    .statistics-container {
        padding: 20px 10px;
        margin: 20px 0;
        border-radius: 8px;
    }

    .statistics-heading {
        font-size: 1em;
        margin-bottom: 15px;
        padding: 0 5px;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .statistic-card {
        padding: 10px 8px;
        border-radius: 5px;
    }

    .statistic-number {
        font-size: 1.5em;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .statistic-rating {
        gap: 3px;
    }

    .statistic-rating .statistic-number {
        font-size: 1.5em;
    }

    .statistic-rating img {
        width: 18px;
        height: 18px;
    }

    .statistic-title {
        font-size: 0.75em;
        margin-top: 3px;
        line-height: 1.2;
        font-weight: 500;
    }

    .statistic-subtitle {
        font-size: 0.7em;
        margin-top: 1px;
        opacity: 0.9;
    }

    .statistics-cta {
        margin: 20px 0;
        padding: 0 10px;
    }

    .statistics-cta-title {
        font-size: 0.95em;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .statistics-cta-button {
        padding: 10px 20px;
        font-size: 0.85em;
        width: 100%;
        max-width: 280px;
        border-radius: 6px;
    }
}

/* Checklist Section */
.checklist-section {
    background: #f8fafc;
}

.checklist-heading {
    color: #1e293b;
    font-weight: 700;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.checklist-subtitle {
    font-size: 1.15em;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #475569;
}

/* Checklist Grid */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.checklist-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.checklist-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.checklist-accent-blue {
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
}

.checklist-accent-green {
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.checklist-accent-purple {
    background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 100%);
}

.checklist-accent-orange {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.checklist-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.checklist-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checklist-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.checklist-icon-green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.checklist-icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.checklist-icon-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.checklist-title {
    color: #1e293b;
    font-size: 1.2em;
    margin: 0;
    font-weight: 600;
}

.checklist-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-item-text {
    color: #475569;
    line-height: 1.5;
}

/* Timeline Cards */
.timeline-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.timeline-card-accent--purple {
    background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 100%);
}

.timeline-card-accent--orange {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.timeline-card-accent--red {
    background: linear-gradient(90deg, #ef4444 0%, #f87171 100%);
}

.timeline-card-accent--green {
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.timeline-card-accent--cyan {
    background: linear-gradient(90deg, #06b6d4 0%, #22d3ee 100%);
}

.timeline-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.timeline-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon-box--purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.timeline-icon-box--orange {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.timeline-icon-box--red {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}

.timeline-icon-box--green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.timeline-icon-box--cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.timeline-title {
    color: #1e293b;
    font-size: 1.2em;
    margin: 0;
    font-weight: 600;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.timeline-list-item--last {
    border-bottom: none;
}

.timeline-check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.timeline-item-text {
    color: #475569;
    line-height: 1.5;
}

.timeline-item-text mark {
    background-color: rgba(251, 191, 36, 0.2);
    color: inherit;
    padding: 2px 4px;
    border-radius: 3px;
}

.timeline-item-text strong {
    font-weight: 600;
    color: #1e293b;
}

.timeline-item-text em {
    font-style: italic;
}

/* PDF Download CTA */
.pdf-download-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.pdf-icon-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.pdf-cta-title {
    color: white;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.pdf-cta-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.1em;
    line-height: 1.6;
}

.pdf-download-btn {
    background: white;
    color: #1e293b;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pdf-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* PDF Modal */
.pdf-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.pdf-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.pdf-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.pdf-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.pdf-modal-title {
    color: #1e293b;
    margin: 0 0 10px 0;
    font-size: 1.8em;
    font-weight: 700;
}

.pdf-modal-subtitle {
    color: #64748b;
    margin: 0;
    font-size: 1.1em;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Checklist Preview */
.checklist-preview {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}

.checklist-preview-title {
    color: #1e293b;
    margin: 0 0 15px 0;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist-preview-list {
    margin: 0;
    padding: 0 0 0 20px;
    color: #475569;
    line-height: 1.6;
}

/* Form Elements */
.pdf-form {
    margin-bottom: 25px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 600;
    font-size: 0.95em;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    outline: none;
}

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

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9em;
    color: #64748b;
    line-height: 1.5;
}

.form-checkbox {
    margin-top: 4px;
    transform: scale(1.2);
}

.form-checkbox-text a {
    color: #10b981;
    text-decoration: none;
}

.form-buttons {
    display: flex;
    gap: 12px;
}

.btn-cancel {
    flex: 1;
    padding: 14px;
    background: #f3f4f6;
    color: #6b7280;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #e5e7eb;
}

.btn-submit {
    flex: 2;
    padding: 14px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    font-size: 0.85em;
    color: #6b7280;
}

.trust-indicator-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-icon {
    filter: brightness(0) saturate(100%) invert(68%) sepia(52%) saturate(1185%) hue-rotate(91deg) brightness(94%) contrast(91%);
}

/* Close Modal Button */
.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #9ca3af;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

/* Rechner Section */
.section-rechner {
    background: white;
}

.section-title-bordered {
    color: #1e293b;
    font-weight: 700;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-subtitle-large {
    font-size: 1.15em;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #475569;
}

/* Calculator Grid */
.grid-calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 30px;
}

@media (max-width: 768px) {
    .grid-calculator {
        grid-template-columns: 1fr;
    }
}

/* Calculator Card */
.calculator-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.calculator-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.calculator-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator-title {
    color: #1e293b;
    font-size: 1.3em;
    margin: 0;
    font-weight: 600;
}

/* Calculator Form */
.calculator-form {
    margin-top: 20px;
}

.form-field {
    margin-bottom: 20px;
}

.form-label-calc {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-label-calc-mb {
    margin-bottom: 10px;
}

.form-select {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-checkbox-group-calc {
    display: grid;
    gap: 10px;
}

.form-checkbox-label-calc {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox-calc {
    width: 20px;
    height: 20px;
}

.calc-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.calc-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Pricing Section */
.pricing-container {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-icon-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pricing-title {
    color: white;
    font-size: 1.8em;
    margin-bottom: 10px;
}


/* Pricing Cards Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.pricing-card-accent--blue {
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
}

.pricing-card-accent--purple {
    background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 100%);
}

.pricing-card-accent--red {
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
}

.pricing-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.pricing-icon-box--blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.pricing-icon-box--purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.pricing-icon-box--red {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.pricing-card-title {
    color: #1e293b;
    margin-bottom: 10px;
}

.pricing-amount {
    font-size: 1.8rem;
    margin: 15px 0;
    font-weight: bold;
}

.pricing-amount--blue {
    color: #3b82f6;
}

.pricing-amount--purple {
    color: #8b5cf6;
}

.pricing-amount--red {
    color: #dc2626;
}

.pricing-description {
    color: #64748b;
    font-size: 0.95em;
}

.pricing-description em {
    font-style: italic;
}

/* Tips & Tricks Section */
.tips-tricks-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.05;
    pointer-events: none;
}

.floating-shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #3b82f6, transparent);
    top: -150px;
    right: -150px;
    animation: float 20s infinite;
}

.floating-shape-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #10b981, transparent);
    bottom: -100px;
    left: -100px;
    animation: float 15s infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(90deg);
    }

    50% {
        transform: translateY(0) rotate(180deg);
    }

    75% {
        transform: translateY(20px) rotate(270deg);
    }
}

.tips-container {
    position: relative;
    z-index: 1;
}

.tips-header {
    text-align: center;
    margin-bottom: 60px;
}

.tips-title {
    font-size: 2.5em;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}

.tips-badge {
    display: inline-block;
    background: #fbbf24;
    color: #1e293b;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tips-subtitle {
    font-size: 1.2em;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.tips-subtitle strong {
    color: #1e40af;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

/* Tip Card */
.tip-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.tip-card:hover .card-glow {
    opacity: 0.1;
}

.tip-card:hover .hover-indicator {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.card-glow--blue {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.card-glow--red {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.card-glow--orange {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.card-glow--green {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.card-glow--purple {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.card-glow--cyan {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.tip-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tip-icon-container--blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.tip-icon-container--red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.tip-icon-container--orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.tip-icon-container--green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.tip-icon-container--purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.tip-icon-container--cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.tip-card-title {
    color: #1e293b;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 700;
}

.tip-card-text {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95em;
}

.tip-card-text strong {
    font-weight: 600;
}

.tip-card-text .tip-highlight--blue {
    color: #3b82f6;
}

.tip-card-text .tip-highlight--red {
    color: #ef4444;
}

.tip-card-text .tip-highlight--orange {
    color: #f59e0b;
}

.tip-card-text .tip-highlight--green {
    color: #10b981;
}

.tip-card-text .tip-highlight--purple {
    color: #8b5cf6;
}

.tip-card-text .tip-highlight--cyan {
    color: #06b6d4;
}

.hover-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    color: white;
    font-size: 14px;
}

.hover-indicator--blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.hover-indicator--red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.hover-indicator--orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.hover-indicator--green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.hover-indicator--purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.hover-indicator--cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}


/* Mistakes Section */
.mistakes-section {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-radius: 30px;
    padding: 50px;
    margin: 60px 0;
    position: relative;
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.15);
}

.warning-badge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.warning-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
}

.warning-badge svg {
    width: 24px;
    height: 24px;
}

.mistakes-title {
    text-align: center;
    font-size: 2.2em;
    color: #991b1b;
    margin: 0 0 40px 0;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.mistakes-title svg {
    width: 40px;
    height: 40px;
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mistake-item {
    background: white;
    padding: 18px 25px;
    border-radius: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-left: 4px solid #ef4444;
}

.mistake-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mistake-number {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
    flex-shrink: 0;
}

.mistake-text {
    color: #1e293b;
    font-weight: 600;
}

.mistakes-cta-container {
    text-align: center;
    margin-top: 40px;
}

.mistakes-cta-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transition: all 0.3s;
    text-transform: uppercase;
}

.mistakes-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.mistakes-cta-button svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .mistakes-section {
        padding: 30px 20px;
        margin: 40px 0;
    }

    .mistakes-title {
        font-size: 1.5em;
        flex-direction: column;
        gap: 10px;
    }

    .mistakes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mistake-item {
        padding: 15px 20px;
    }

    .mistake-number {
        width: 30px;
        height: 30px;
        margin-right: 15px;
        font-size: 0.9em;
    }

    .mistake-text {
        font-size: 0.95em;
    }

    .mistakes-cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }
}


/* Comparison Section */
.comparison-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 120px 0 80px 0;
    position: relative;
}

.comparison-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(59, 130, 246, 0.5) 35px, rgba(59, 130, 246, 0.5) 70px);
    pointer-events: none;
}

.comparison-container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 80px 0 60px 0;
    }
}


/* Comparison Section Header */
.comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

.winner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    position: relative;
    z-index: 10;
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
    }
}

.comparison-title {
    font-size: 2.5em;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}

.comparison-subtitle {
    font-size: 1.2em;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-subtitle strong {
    color: #3b82f6;
}

@media (max-width: 768px) {
    .comparison-header {
        margin-bottom: 40px;
    }

    .winner-badge {
        padding: 8px 20px;
        font-size: 0.9em;
    }

    .comparison-title {
        font-size: 1.8em;
    }

    .comparison-subtitle {
        font-size: 1em;
        padding: 0 20px;
    }
}


/* Comparison Wrapper Section */
.comparison-wrapper {
    margin: 60px 0;
}

.comparison-header-section {
    text-align: center;
    margin-bottom: 48px;
}

.comparison-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.comparison-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.comparison-description {
    color: #64748b;
    font-size: 18px;
    margin: 0;
}

@media (max-width: 768px) {
    .comparison-wrapper {
        margin: 40px 0;
    }

    .comparison-header-section {
        margin-bottom: 32px;
    }

    .comparison-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .comparison-main-title {
        font-size: 24px;
    }

    .comparison-description {
        font-size: 16px;
    }
}


/* Comparison Cards Grid */
.comparison-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
}

.comparison-card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.comparison-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.comparison-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.comparison-card-icon--price {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.comparison-card-icon--experience {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.comparison-card-title {
    margin: 0;
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
}

.comparison-items {
    display: grid;
    gap: 16px;
}

.comparison-item {
    padding: 16px;
    border-radius: 12px;
}

.comparison-item--winner {
    background: #f0fdf4;
    border-left: 4px solid #10b981;
}

.comparison-item--competitor {
    background: #f8fafc;
}

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

.comparison-item-label {
    font-weight: 600;
}

.comparison-item-label--winner {
    color: #064e3b;
}

.comparison-item-label--competitor {
    color: #64748b;
}

.comparison-item-value {
    text-align: right;
}

.comparison-item-price {
    color: #10b981;
    font-size: 20px;
    font-weight: 700;
}

.comparison-item-price--crossed {
    color: #94a3b8;
    text-decoration: line-through;
}

.comparison-item-years {
    color: #10b981;
    font-size: 18px;
    font-weight: 700;
}

.comparison-item-years--competitor {
    color: #94a3b8;
    font-size: 16px;
}

.comparison-item-employees {
    color: #64748b;
    font-size: 11px;
}

.comparison-item-employees--competitor {
    color: #94a3b8;
    font-size: 11px;
}

.comparison-item-note {
    font-size: 12px;
    margin-top: 4px;
}

.comparison-item-note--success {
    color: #10b981;
}

.comparison-item-note--error {
    color: #ef4444;
}

@media (max-width: 768px) {
    .comparison-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .comparison-card {
        padding: 20px;
    }

    .comparison-card-title {
        font-size: 18px;
    }

    .comparison-item-price {
        font-size: 18px;
    }
}


/* Additional Comparison Card Icons */
.comparison-card-icon--fleet {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.comparison-card-icon--insurance {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}

.comparison-card-icon--service {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

/* Service List Styles */
.comparison-service-title {
    color: #064e3b;
    font-weight: 600;
    margin-bottom: 8px;
}

.comparison-service-title--competitor {
    color: #64748b;
}

.comparison-service-list {
    display: grid;
    gap: 4px;
}

.comparison-service-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-service-icon {
    color: #10b981;
}

.comparison-service-icon--error {
    color: #ef4444;
}

.comparison-service-text {
    color: #475569;
    font-size: 14px;
}

.comparison-service-text--disabled {
    color: #94a3b8;
}

@media (max-width: 768px) {
    .comparison-service-text {
        font-size: 13px;
    }
}


/* Reviews Comparison Card */
.comparison-card-icon--reviews {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.comparison-review-rating {
    color: #10b981;
    font-size: 18px;
    font-weight: 700;
}

.comparison-review-rating--competitor {
    color: #94a3b8;
    font-size: 16px;
}

.comparison-review-count {
    color: #64748b;
    font-size: 11px;
}

.comparison-review-count--competitor {
    color: #94a3b8;
    font-size: 11px;
}

.comparison-verification-badge {
    margin-top: 8px;
    padding: 8px;
    background: #dcfce7;
    border-radius: 8px;
}

.comparison-verification-text {
    color: #14532d;
    font-size: 12px;
    font-weight: 600;
}


/* Comparison Summary Section */
.comparison-summary {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    margin: 48px auto 0;
    max-width: 800px;
    border: 1px solid #10b981;
}

.comparison-summary-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.comparison-summary-title {
    color: #064e3b;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.comparison-summary-description {
    color: #047857;
    font-size: 16px;
    margin: 0 0 24px 0;
}

.comparison-summary-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.comparison-summary-btn-primary {
    background: #10b981;
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.comparison-summary-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.comparison-summary-btn-secondary {
    background: white;
    color: #10b981;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    border: 2px solid #10b981;
    transition: all 0.3s ease;
}

.comparison-summary-btn-secondary:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .comparison-summary {
        padding: 24px 20px;
        margin: 32px 15px 0;
    }

    .comparison-summary-icon {
        font-size: 36px;
    }

    .comparison-summary-title {
        font-size: 20px;
    }

    .comparison-summary-description {
        font-size: 14px;
    }

    .comparison-summary-actions {
        flex-direction: column;
    }

    .comparison-summary-btn-primary,
    .comparison-summary-btn-secondary {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }
}


/* International Section */
.international-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 120px 0 80px 0;
    position: relative;
    margin-top: 80px;
}

.animated-world-map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: url("../icons/world-map-animated.svg");
    background-size: cover;
    pointer-events: none;
}

@media (max-width: 768px) {
    .international-section {
        padding: 80px 0 60px 0;
        margin-top: 60px;
    }
}


/* International Section Header */
.international-container {
    position: relative;
    z-index: 1;
}

.international-header {
    text-align: center;
    margin-bottom: 60px;
}

.international-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.international-badge img {
    width: 20px;
    height: 20px;
}

.international-title {
    font-size: 2.5em;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}

.international-subtitle {
    font-size: 1.2em;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.international-subtitle strong {
    color: #3b82f6;
}

@media (max-width: 768px) {
    .international-header {
        margin-bottom: 40px;
    }

    .international-badge {
        padding: 8px 20px;
        font-size: 0.9em;
    }

    .international-title {
        font-size: 1.8em;
    }

    .international-subtitle {
        font-size: 1em;
        padding: 0 20px;
    }
}


/* International Cards Grid */
.international-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Destination Card */
.destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.destination-card .card-header {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 25px;
    text-align: center;
    position: relative;
}

.flag-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.flag-germany {
    width: 60px;
    height: 40px;
    display: flex;
    flex-direction: column;
}

.flag-germany-black {
    background: #000000;
    height: 33.33%;
}

.flag-germany-red {
    background: #DD0000;
    height: 33.33%;
}

.flag-germany-yellow {
    background: #FFCE00;
    height: 33.33%;
}

.destination-card h3 {
    color: white;
    font-size: 1.5em;
    margin: 0;
}

.card-body {
    padding: 30px;
}

/* Destination Items */
.destination-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.destination-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.2);
}

.destination-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.destination-info img {
    width: 24px;
    height: 24px;
}

.destination-name {
    font-weight: 600;
    color: #1e293b;
}

.destination-details {
    text-align: right;
}

.destination-distance {
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.1em;
}

.destination-time {
    color: #64748b;
    font-size: 0.85em;
}

.destination-promo {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
}

.destination-promo strong {
    color: #92400e;
}

/* Service Card */
.service-card {
    padding: 10px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.service-card .card-header {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 25px;
    text-align: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Fix service-icon stretching in international cards section */
.international-cards .service-card .service-icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    flex-shrink: 0;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    margin: 0 !important;
    padding: 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.international-cards .service-card .service-icon svg {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
}

.international-cards .service-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 25px;
    text-align: left;
}

.international-cards .service-card h3 {
    margin: 0;
    flex: 1;
}

/* Fix price-icon stretching in international cards section */
.international-cards .pricing-card .price-icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    flex-shrink: 0;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    margin: 0 !important;
    padding: 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.international-cards .pricing-card .price-icon svg {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
}

.international-cards .pricing-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.international-cards .pricing-card h3 {
    margin: 0;
    flex: 1;
}

/* Insurance Card Team Styles */
.insurance-card-team {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.4s;
}

.insurance-card-team:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
}

.insurance-card-header {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.insurance-icon-container {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    min-height: 70px !important;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.insurance-icon-container svg {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
}

.insurance-card-title {
    color: white;
    font-size: 1.5em;
    margin: 0;
    text-align: center;
}

.insurance-card-body {
    padding: 30px;
}

.insurance-card-text {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.7;
}

.team-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 10px;
    margin-bottom: 10px;
}

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

.team-feature-item svg {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    flex-shrink: 0;
}

.team-feature-title {
    color: #92400e;
    font-weight: 700;
}

.team-feature-value {
    color: #78350f;
    margin-left: 10px;
}

/* Responsive styles for insurance card */
@media (max-width: 768px) {
    .insurance-card-header {
        padding: 20px;
    }

    .insurance-icon-container {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
    }

    .insurance-icon-container svg {
        width: 35px !important;
        height: 35px !important;
        max-width: 35px !important;
        max-height: 35px !important;
    }

    .insurance-card-title {
        font-size: 1.2em;
    }

    .insurance-card-body {
        padding: 20px;
    }

    .team-feature-item {
        padding: 10px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .insurance-icon-container {
        width: 55px !important;
        height: 55px !important;
        min-width: 55px !important;
        min-height: 55px !important;
        margin-bottom: 12px;
    }

    .insurance-icon-container svg {
        width: 32px !important;
        height: 32px !important;
    }

    .insurance-card-title {
        font-size: 1.1em;
    }

    .insurance-card-body {
        padding: 15px;
    }

    .insurance-card-text {
        font-size: 0.95em;
        margin-bottom: 20px;
    }

    .team-feature-item {
        padding: 8px;
        gap: 10px;
        margin-bottom: 8px;
    }

    .team-feature-title {
        font-size: 0.9em;
    }

    .team-feature-value {
        font-size: 0.85em;
    }
}

@media (max-width: 375px) {
    .insurance-card-header {
        padding: 15px;
    }

    .insurance-icon-container {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        margin-bottom: 10px;
    }

    .insurance-icon-container svg {
        width: 30px !important;
        height: 30px !important;
    }

    .insurance-card-title {
        font-size: 1em;
    }

    .insurance-card-body {
        padding: 12px;
    }

    .insurance-card-text {
        font-size: 0.9em;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .team-feature-item {
        padding: 6px 8px;
        gap: 8px;
        margin-bottom: 6px;
        border-radius: 8px;
    }

    .team-feature-item svg {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        min-height: 20px !important;
    }

    .team-feature-title {
        font-size: 0.85em;
    }

    .team-feature-value {
        font-size: 0.8em;
        margin-left: 5px;
    }
}

.service-icon img {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    color: white;
    font-size: 1.5em;
    margin: 0;
}

.service-description {
    color: #64748b;
    margin-bottom: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #f0fdf4;
    border-radius: 10px;
    margin-bottom: 10px;
}

.service-item img {
    width: 20px;
    height: 20px;
}

.service-item-text {
    color: #1e293b;
    font-weight: 500;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.pricing-card .card-header {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    padding: 25px;
    text-align: center;
}

.price-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-icon img {
    width: 30px;
    height: 30px;
}

.pricing-card h3 {
    color: white;
    font-size: 1.5em;
    margin: 0;
}

.pricing-table {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 15px;
    padding: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-row--highlight {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.price-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-info img {
    width: 24px;
    height: 24px;
}

.price-room {
    font-weight: 600;
    color: #1e293b;
}

.price-room--highlight {
    font-weight: 700;
    color: #92400e;
}

.price-amount {
    color: #10b981;
    font-weight: 700;
    font-size: 1.2em;
}

.price-amount--highlight {
    color: #d97706;
    font-size: 1.3em;
}

.pricing-note {
    color: #64748b;
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
}

/* Responsive Styles for International Section */
@media (max-width: 768px) {
    .international-section {
        padding: 60px 0 50px 0;
        margin-top: 40px;
    }

    .international-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .international-badge {
        font-size: 0.85em;
        padding: 6px 14px;
    }

    .international-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .international-subtitle {
        font-size: 1em;
        padding: 0 10px;
    }

    .international-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .card-body {
        padding: 20px;
    }

    .destination-card h3,
    .service-card h3,
    .pricing-card h3 {
        font-size: 1.2em;
    }

    .destination-item {
        padding: 12px;
        margin-bottom: 10px;
    }

    .destination-distance,
    .destination-time {
        font-size: 0.9em;
    }

    .service-item {
        padding: 10px;
        margin-bottom: 8px;
    }

    .price-row {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .international-section {
        padding: 50px 0 40px 0;
        margin-top: 30px;
    }

    .international-badge {
        font-size: 0.8em;
        padding: 5px 12px;
    }

    .international-badge svg {
        width: 16px;
        height: 16px;
    }

    .international-title {
        font-size: 1.5em;
        margin-bottom: 12px;
    }

    .international-subtitle {
        font-size: 0.95em;
        line-height: 1.4;
    }

    .international-cards {
        gap: 20px;
    }

    .destination-card,
    .service-card,
    .pricing-card {
        padding: 20px;
        border-radius: 15px;
    }

    .card-header {
        padding: 15px;
    }

    .card-header h3 {
        font-size: 1.1em;
    }

    .flag-icon {
        width: 50px;
        height: 50px;
    }

    .destination-item {
        padding: 10px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .destination-info {
        gap: 8px;
    }

    .destination-info svg {
        width: 20px;
        height: 20px;
    }

    .destination-name {
        font-size: 0.95em;
    }

    .destination-details {
        gap: 10px;
    }

    .destination-distance,
    .destination-time {
        font-size: 0.85em;
    }

    .service-item {
        padding: 8px;
        gap: 10px;
    }

    .service-item svg {
        width: 18px;
        height: 18px;
    }

    .service-item-text {
        font-size: 0.9em;
    }

    .price-row {
        padding: 10px;
        gap: 8px;
    }

    .price-info svg {
        width: 20px;
        height: 20px;
    }

    .price-room {
        font-size: 0.9em;
    }

    .price-amount {
        font-size: 1.2em;
    }
}

@media (max-width: 375px) {
    .international-section {
        padding: 40px 0 30px 0;
        margin-top: 20px;
    }

    .international-header {
        margin-bottom: 20px;
    }

    .international-badge {
        font-size: 0.75em;
        padding: 4px 10px;
        border-radius: 4px;
    }

    .international-badge svg {
        width: 14px;
        height: 14px;
    }

    .international-title {
        font-size: 1.2em;
        margin-bottom: 10px;
        padding: 0 10px;
    }

    .international-subtitle {
        font-size: 0.85em;
        line-height: 1.3;
        padding: 0 10px;
    }

    .international-cards {
        gap: 15px;
    }

    .destination-card,
    .service-card,
    .pricing-card {
        padding: 15px;
        border-radius: 12px;
    }

    .card-header {
        padding: 12px;
        margin-bottom: 15px;
    }

    .card-header h3 {
        font-size: 1em;
    }

    .flag-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .flag-germany {
        width: 36px;
        height: 24px;
    }

    .destination-list {
        gap: 8px;
    }

    .destination-item {
        padding: 8px;
        margin-bottom: 6px;
        border-radius: 6px;
    }

    .destination-info svg {
        width: 18px;
        height: 18px;
    }

    .destination-name {
        font-size: 0.85em;
    }

    .destination-distance,
    .destination-time {
        font-size: 0.75em;
    }

    .destination-promo {
        font-size: 0.85em;
        padding: 10px;
        margin-top: 10px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
    }

    .service-icon svg {
        width: 22px;
        height: 22px;
    }

    .service-description {
        font-size: 0.85em;
        margin-bottom: 12px;
    }

    .service-list {
        gap: 6px;
    }

    .service-item {
        padding: 6px;
        gap: 8px;
        margin-bottom: 5px;
    }

    .service-item svg {
        width: 16px;
        height: 16px;
    }

    .service-item-text {
        font-size: 0.8em;
        line-height: 1.2;
    }

    .price-icon {
        width: 45px;
        height: 45px;
    }

    .price-icon svg {
        width: 22px;
        height: 22px;
    }

    .pricing-table {
        gap: 6px;
    }

    .price-row {
        padding: 8px;
        gap: 6px;
        border-radius: 6px;
    }

    .price-info {
        gap: 6px;
    }

    .price-info svg {
        width: 18px;
        height: 18px;
    }

    .price-room {
        font-size: 0.85em;
    }

    .price-amount {
        font-size: 1em;
        font-weight: 600;
    }
}


/* Insurance Section */
.insurance-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.security-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(16, 185, 129, 0.5) 35px, rgba(16, 185, 129, 0.5) 70px);
    pointer-events: none;
}

.insurance-header {
    text-align: center;
    margin-bottom: 60px;
}

.security-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    position: relative;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.6);
    animation: pulse 2s infinite;
}

.insurance-title {
    font-size: 2.5em;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}

.insurance-subtitle {
    font-size: 1.2em;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.insurance-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.insurance-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.insurance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.insurance-card-header {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    padding: 25px;
    position: relative;
}

.insurance-icon-container {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.insurance-card-title {
    color: white;
    font-size: 1.5em;
    margin: 0;
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fbbf24;
    color: #1e293b;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 700;
}

.insurance-card-body {
    padding: 30px;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 10px;
    margin-bottom: 10px;
}

.documentation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.documentation-item {
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.documentation-title {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9em;
}

.documentation-subtitle {
    color: #64748b;
    font-size: 0.8em;
}

/* Responsive Styles for Insurance Section */
@media (max-width: 768px) {
    .insurance-section {
        padding: 50px 0;
    }

    .insurance-header {
        margin-bottom: 40px;
    }

    .security-badge {
        padding: 8px 20px;
        font-size: 0.9em;
    }

    .insurance-title {
        font-size: 1.8em;
    }

    .insurance-subtitle {
        font-size: 1em;
        padding: 0 20px;
    }

    .insurance-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .insurance-card-header {
        padding: 20px;
    }

    .insurance-icon-container {
        width: 60px;
        height: 60px;
    }

    .insurance-icon-container svg {
        width: 32px;
        height: 32px;
    }

    .insurance-card-title {
        font-size: 1.2em;
    }

    .insurance-card-body {
        padding: 25px;
    }

    .documentation-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .insurance-section {
        padding: 40px 0;
    }

    .insurance-header {
        margin-bottom: 30px;
    }

    .security-badge {
        padding: 6px 15px;
        font-size: 0.85em;
        margin-bottom: 15px;
    }

    .security-badge svg {
        width: 16px;
        height: 16px;
    }

    .insurance-title {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .insurance-subtitle {
        font-size: 0.95em;
        line-height: 1.6;
        padding: 0 15px;
    }

    .insurance-cards {
        gap: 20px;
        padding: 0 10px;
    }

    .insurance-card {
        border-radius: 15px;
    }

    .insurance-card-header {
        padding: 15px;
    }

    .insurance-icon-container {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .insurance-icon-container svg {
        width: 25px;
        height: 25px;
    }

    .insurance-card-title {
        font-size: 1.1em;
    }

    .premium-badge {
        font-size: 0.75em;
        padding: 3px 10px;
        top: 15px;
        right: 15px;
    }

    .insurance-card-body {
        padding: 20px;
    }

    .coverage-item {
        padding: 10px;
        gap: 12px;
        margin-bottom: 8px;
    }

    .coverage-item svg {
        width: 20px;
        height: 20px;
    }

    .coverage-item span {
        font-size: 0.9em;
    }

    .documentation-item {
        padding: 12px;
    }

    .documentation-item svg {
        width: 24px;
        height: 24px;
    }

    .documentation-title {
        font-size: 0.85em;
    }

    .documentation-subtitle {
        font-size: 0.75em;
    }
}

@media (max-width: 375px) {
    .insurance-section {
        padding: 30px 0;
    }

    .insurance-header {
        margin-bottom: 25px;
    }

    .security-badge {
        padding: 5px 12px;
        font-size: 0.75em;
        border-radius: 30px;
    }

    .security-badge svg {
        width: 14px;
        height: 14px;
        margin-right: 5px;
    }

    .badge-glow {
        display: none;
    }

    .insurance-title {
        font-size: 1.2em;
        margin-bottom: 10px;
        padding: 0 10px;
    }

    .insurance-subtitle {
        font-size: 0.85em;
        line-height: 1.4;
        padding: 0 10px;
    }

    .insurance-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .insurance-card {
        border-radius: 12px;
    }

    .insurance-card-header {
        padding: 12px;
    }

    .insurance-icon-container {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .insurance-icon-container svg {
        width: 20px;
        height: 20px;
    }

    .insurance-card-title {
        font-size: 0.95em;
    }

    .premium-badge {
        font-size: 0.65em;
        padding: 2px 8px;
        top: 10px;
        right: 10px;
    }

    .insurance-card-body {
        padding: 15px;
    }

    .insurance-card-body p {
        font-size: 0.85em;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .coverage-item {
        padding: 8px;
        gap: 10px;
        margin-bottom: 6px;
        border-radius: 8px;
    }

    .coverage-item svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .coverage-item span {
        font-size: 0.8em;
        line-height: 1.3;
    }

    .documentation-grid {
        gap: 8px;
    }

    .documentation-item {
        padding: 10px;
        border-radius: 8px;
    }

    .documentation-item svg {
        width: 20px;
        height: 20px;
        margin-bottom: 5px;
    }

    .documentation-title {
        font-size: 0.75em;
        margin-bottom: 2px;
    }

    .documentation-subtitle {
        font-size: 0.65em;
    }
}

/* Emergency Card & Process Timeline */
.emergency-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.emergency-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.emergency-icon-container {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-card-title {
    color: #1e293b;
    font-size: 1.5em;
    margin: 0;
}

.process-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.timeline-number-container {
    position: relative;
}

.timeline-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background: #e2e8f0;
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    color: #1e293b;
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.timeline-subtitle {
    color: #64748b;
    font-size: 0.9em;
}

/* Responsive Styles for Emergency Card */
@media (max-width: 768px) {
    .emergency-card {
        padding: 25px;
    }

    .emergency-card-header {
        gap: 15px;
    }

    .emergency-icon-container {
        width: 60px;
        height: 60px;
    }

    .emergency-icon-container svg {
        width: 30px;
        height: 30px;
    }

    .emergency-card-title {
        font-size: 1.3em;
    }

    .process-timeline-item {
        gap: 15px;
        margin-bottom: 18px;
    }

    .timeline-number {
        width: 36px;
        height: 36px;
        font-size: 0.9em;
    }

    .timeline-line {
        top: 36px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .emergency-card {
        padding: 20px;
        border-radius: 15px;
    }

    .emergency-card-header {
        flex-direction: column;
        text-align: center;
    }

    .emergency-icon-container {
        width: 55px;
        height: 55px;
    }

    .emergency-icon-container svg {
        width: 25px;
        height: 25px;
    }

    .emergency-card-title {
        font-size: 1.2em;
    }

    .process-timeline-item {
        gap: 12px;
        margin-bottom: 15px;
    }

    .timeline-number {
        width: 32px;
        height: 32px;
        font-size: 0.85em;
    }

    .timeline-line {
        top: 32px;
        height: 25px;
        width: 1px;
    }

    .timeline-title {
        font-size: 0.95em;
    }

    .timeline-subtitle {
        font-size: 0.85em;
    }
}

@media (max-width: 375px) {
    .emergency-card {
        padding: 15px;
        border-radius: 12px;
    }

    .card-accent {
        height: 3px;
    }

    .emergency-card-header {
        margin-bottom: 20px;
    }

    .emergency-icon-container {
        width: 45px;
        height: 45px;
        margin: 0 auto 10px;
    }

    .emergency-icon-container svg {
        width: 20px;
        height: 20px;
    }

    .emergency-card-title {
        font-size: 1em;
    }

    .process-timeline-item {
        gap: 10px;
        margin-bottom: 12px;
    }

    .timeline-number-container {
        flex-shrink: 0;
    }

    .timeline-number {
        width: 28px;
        height: 28px;
        font-size: 0.75em;
    }

    .timeline-line {
        display: none;
        /* Убираем линии на маленьких экранах для чистоты */
    }

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

    .timeline-content {
        padding-left: 5px;
    }

    .timeline-title {
        font-size: 0.85em;
        margin-bottom: 3px;
    }

    .timeline-subtitle {
        font-size: 0.75em;
    }
}

/* Other Countries Section */
.other-countries {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.other-countries-title {
    text-align: center;
    font-size: 2em;
    color: #1e293b;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.other-countries-title img {
    width: 30px;
    height: 30px;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.country-card {
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

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

.country-card--switzerland {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.country-card--italy {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.country-card--france {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.country-card--netherlands {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.country-flag {
    width: 60px;
    height: 40px;
    margin: 0 auto 15px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.flag-switzerland,
.flag-italy,
.flag-france,
.flag-netherlands {
    width: 45px;
    height: 30px;
    display: flex;
}

/* Switzerland Flag */
.flag-switzerland {
    background: #FF0000;
    position: relative;
}

.flag-switzerland::before,
.flag-switzerland::after {
    content: "";
    position: absolute;
    background: white;
}

.flag-switzerland::before {
    width: 60%;
    height: 20%;
    top: 40%;
    left: 20%;
}

.flag-switzerland::after {
    width: 20%;
    height: 60%;
    top: 20%;
    left: 40%;
}

/* Italy Flag */
.flag-italy .flag-stripe:nth-child(1) {
    background: #009246;
    width: 33.33%;
}

.flag-italy .flag-stripe:nth-child(2) {
    background: #FFFFFF;
    width: 33.33%;
}

.flag-italy .flag-stripe:nth-child(3) {
    background: #CE2B37;
    width: 33.33%;
}

/* France Flag */
.flag-france .flag-stripe:nth-child(1) {
    background: #002395;
    width: 33.33%;
}

.flag-france .flag-stripe:nth-child(2) {
    background: #FFFFFF;
    width: 33.33%;
}

.flag-france .flag-stripe:nth-child(3) {
    background: #ED2939;
    width: 33.33%;
}

/* Netherlands Flag */
.flag-netherlands {
    flex-direction: column;
}

.flag-netherlands .flag-stripe:nth-child(1) {
    background: #AE1C28;
    height: 33.33%;
}

.flag-netherlands .flag-stripe:nth-child(2) {
    background: #FFFFFF;
    height: 33.33%;
}

.flag-netherlands .flag-stripe:nth-child(3) {
    background: #21468B;
    height: 33.33%;
}

.country-name {
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 600;
}

.country-cities {
    color: #64748b;
    margin-bottom: 10px;
}

.country-price {
    font-weight: 700;
    font-size: 1.2em;
}

.country-price--red {
    color: #ef4444;
}

.country-price--green {
    color: #10b981;
}

.country-price--blue {
    color: #3b82f6;
}

.country-price--orange {
    color: #f59e0b;
}

@media (max-width: 768px) {
    .other-countries {
        padding: 30px 20px;
    }

    .other-countries-title {
        font-size: 1.5em;
        flex-direction: column;
    }

    .countries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* Insurance Section */
.insurance-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.security-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(16, 185, 129, 0.5) 35px, rgba(16, 185, 129, 0.5) 70px);
    pointer-events: none;
}

.insurance-container {
    position: relative;
    z-index: 1;
}

.insurance-header {
    text-align: center;
    margin-bottom: 60px;
}

.security-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.6);
    animation: pulse 2s infinite;
}

.security-badge img {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
}

.security-badge-text {
    position: relative;
    z-index: 1;
}

.insurance-title {
    font-size: 2.5em;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}

.insurance-subtitle {
    font-size: 1.2em;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.insurance-subtitle strong {
    color: #10b981;
}

@media (max-width: 768px) {
    .insurance-section {
        padding: 60px 0;
    }

    .insurance-header {
        margin-bottom: 40px;
    }

    .security-badge {
        padding: 8px 20px;
        font-size: 0.9em;
    }

    .insurance-title {
        font-size: 1.8em;
    }

    .insurance-subtitle {
        font-size: 1em;
        padding: 0 20px;
    }
}


/* Insurance Cards Section */
.insurance-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.insurance-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.insurance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.insurance-card .card-header {
    padding: 25px;
    position: relative;
}

.insurance-card--full .card-header {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.insurance-card--documentation .card-header {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.insurance-card--team .card-header {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.icon-container {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.icon-container img {
    width: 40px;
    height: 40px;
}

.insurance-card h3 {
    color: white;
    font-size: 1.5em;
    margin: 0;
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fbbf24;
    color: #1e293b;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 700;
}

.card-body {
    padding: 30px;
}

.card-description {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.7;
}

.card-description strong {
    color: #3b82f6;
}

/* Coverage List */
.coverage-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 10px;
    margin-bottom: 10px;
}

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

.coverage-item img {
    width: 24px;
    height: 24px;
}

.coverage-item-text {
    color: #1e293b;
    font-weight: 500;
}

/* Documentation Grid */
.documentation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.doc-item {
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.doc-item img {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
}

.doc-item-title {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9em;
}

.doc-item-subtitle {
    color: #64748b;
    font-size: 0.8em;
}

/* Team Features */
.team-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 10px;
    margin-bottom: 10px;
}

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

.team-feature img {
    width: 24px;
    height: 24px;
}

.team-feature-title {
    color: #92400e;
    font-weight: 600;
}

.team-feature-value {
    color: #78350f;
    margin-left: 10px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

.trust-item:nth-child(2) {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.trust-item:nth-child(3) {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.trust-item:nth-child(4) {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.trust-value {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 5px;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-value--blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.trust-value--green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.trust-value--orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.trust-value--purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.trust-label {
    color: #64748b;
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .insurance-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .documentation-grid {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        gap: 30px;
    }

    .trust-value {
        font-size: 2.5em;
    }
}

/* Guarantees Section */
.guarantees-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    position: relative;
    overflow: hidden;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.guarantee-badge img {
    width: 20px;
    height: 20px;
}

.guarantee-title {
    font-size: 2.5em;
    color: white;
    margin-bottom: 40px;
    text-align: center;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.guarantee-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.guarantee-content h3 {
    font-size: 1.3em;
    color: #1e293b;
    margin-bottom: 10px;
}

.guarantee-content p {
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .guarantees-section {
        padding: 60px 20px;
    }

    .guarantee-title {
        font-size: 2em;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Insurance CTA Section */
.insurance-cta {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.insurance-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../icons/wave-bg.svg') no-repeat bottom;
    opacity: 0.3;
}

.insurance-cta-content {
    position: relative;
    z-index: 1;
}

.insurance-cta-title {
    color: white;
    font-size: 2.2em;
    margin-bottom: 20px;
    font-weight: 700;
}

.insurance-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.insurance-cta-btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s;
    text-decoration: none;
}

.insurance-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.insurance-cta-btn-primary img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.insurance-cta-btn-secondary {
    background: white;
    color: #1e293b;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.insurance-cta-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.insurance-cta-btn-secondary img {
    width: 24px;
    height: 24px;
}

.insurance-cta-features {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.insurance-cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.insurance-cta-feature img {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .insurance-cta {
        padding: 30px 20px;
    }

    .insurance-cta-title {
        font-size: 1.8em;
    }

    .insurance-cta-text {
        font-size: 1.1em;
    }

    .insurance-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .insurance-cta-btn-primary,
    .insurance-cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Emergency Section */
.emergency-section {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 50%, #fbbf24 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.emergency-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.2), transparent);
    animation: emergencyPulse 2s infinite;
}

@keyframes emergencyPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.emergency-container {
    position: relative;
    z-index: 1;
}

.emergency-header {
    text-align: center;
    margin-bottom: 50px;
}

.emergency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    animation: pulse 1.5s infinite;
}

.emergency-badge img {
    vertical-align: middle;
    margin-right: 10px;
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.emergency-title {
    font-size: 2.8em;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}

.emergency-description {
    font-size: 1.3em;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.emergency-description strong {
    color: #dc2626;
}

.emergency-highlight {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.2em;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    }

    50% {
        box-shadow: 0 10px 40px rgba(239, 68, 68, 0.6);
    }

    100% {
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    }
}

@media (max-width: 768px) {
    .emergency-section {
        padding: 60px 20px;
    }

    .emergency-pulse {
        width: 400px;
        height: 400px;
    }

    .emergency-title {
        font-size: 2em;
    }

    .emergency-description {
        font-size: 1.1em;
    }
}

/* Hotline Banner */
.hotline-banner {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hotline-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: slideGlow 3s infinite;
}

@keyframes slideGlow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hotline-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hotline-label {
    color: #fbbf24;
    font-size: 1.2em;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hotline-number {
    font-size: 3em;
    color: white;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hotline-icon {
    animation: ring 1s ease-in-out infinite;
    width: 50px;
    height: 50px;
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-5deg);
    }

    20% {
        transform: rotate(5deg);
    }

    30% {
        transform: rotate(-5deg);
    }

    40% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

.hotline-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 12px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s;
    animation: emergencyBounce 2s infinite;
    text-decoration: none;
    display: inline-block;
}

.hotline-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

@keyframes emergencyBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hotline-banner {
        padding: 30px 20px;
    }

    .hotline-number {
        font-size: 2em;
        flex-direction: column;
        gap: 10px;
    }

    .hotline-icon {
        width: 40px;
        height: 40px;
    }

    .hotline-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

/* Emergency Cards Grid */
.emergency-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.emergency-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.card-accent-yellow {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.card-accent-red {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.card-accent-green {
    background: linear-gradient(90deg, #10b981, #059669);
}

.emergency-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.emergency-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-card-icon img {
    width: 35px;
    height: 35px;
}

.icon-bg-yellow {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.icon-bg-red {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.icon-bg-green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.emergency-card-title {
    color: #1e293b;
    font-size: 1.5em;
    margin: 0;
}

/* Service Times */
.service-times {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-radius: 15px;
    padding: 20px;
}

.service-time-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(217, 119, 6, 0.2);
}

.service-time-item:last-child {
    border-bottom: none;
}

.service-time-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-time-label img {
    width: 24px;
    height: 24px;
}

.service-time-label strong {
    color: #1e293b;
}

.service-time-value {
    color: #92400e;
    font-weight: 600;
}

.service-time-value.always {
    color: #dc2626;
    font-weight: 700;
}

.night-surcharge {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.night-surcharge img {
    vertical-align: middle;
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.night-surcharge strong {
    color: #991b1b;
}

/* Emergency List */
.emergency-list-intro {
    color: #64748b;
    margin-bottom: 20px;
    font-weight: 600;
}

.emergency-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
}

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

.emergency-list-item img {
    width: 24px;
    height: 24px;
}

.emergency-list-item span {
    color: #1e293b;
    font-weight: 500;
}

.emergency-water {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.emergency-fire {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.emergency-eviction {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.emergency-separation {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

.emergency-death {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}

.emergency-job {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

/* Process Timeline */
.process-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

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

.timeline-number-wrapper {
    position: relative;
}

.timeline-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.timeline-number-1 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.timeline-number-2 {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.timeline-number-3 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.timeline-number-4 {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.timeline-number-5 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background: #e2e8f0;
}

.timeline-content {
    flex: 1;
}

.timeline-content strong {
    color: #1e293b;
    display: block;
    margin-bottom: 5px;
}

.timeline-content span {
    color: #64748b;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .emergency-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .emergency-card {
        padding: 25px;
    }

    .emergency-card-icon {
        width: 50px;
        height: 50px;
    }

    .emergency-card-icon img {
        width: 25px;
        height: 25px;
    }

    .emergency-card-title {
        font-size: 1.2em;
    }
}

/* SVG Color Filters */
.icon-green {
    filter: brightness(0) saturate(100%) invert(65%) sepia(55%) saturate(1582%) hue-rotate(101deg) brightness(96%) contrast(91%);
}

.icon-red {
    filter: brightness(0) saturate(100%) invert(30%) sepia(94%) saturate(6433%) hue-rotate(354deg) brightness(93%) contrast(93%);
}

.icon-blue {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1219%) hue-rotate(198deg) brightness(98%) contrast(92%);
}

.icon-yellow {
    filter: brightness(0) saturate(100%) invert(85%) sepia(36%) saturate(892%) hue-rotate(356deg) brightness(98%) contrast(99%);
}

.icon-purple {
    filter: brightness(0) saturate(100%) invert(38%) sepia(73%) saturate(1932%) hue-rotate(246deg) brightness(91%) contrast(89%);
}

/* Alternative: Direct color for specific icons */
.emergency-card-icon.icon-bg-yellow img {
    filter: invert(61%) sepia(77%) saturate(397%) hue-rotate(6deg) brightness(91%) contrast(91%);
}

.emergency-card-icon.icon-bg-red img {
    filter: invert(27%) sepia(97%) saturate(3461%) hue-rotate(348deg) brightness(89%) contrast(96%);
}

.emergency-card-icon.icon-bg-green img {
    filter: invert(46%) sepia(97%) saturate(632%) hue-rotate(100deg) brightness(95%) contrast(92%);
}

/* For inline colored icons in lists */
.emergency-water img {
    filter: invert(36%) sepia(91%) saturate(1402%) hue-rotate(198deg) brightness(95%) contrast(92%);
}

.emergency-fire img {
    filter: invert(30%) sepia(100%) saturate(2275%) hue-rotate(341deg) brightness(88%) contrast(92%);
}

.emergency-eviction img {
    filter: invert(67%) sepia(41%) saturate(661%) hue-rotate(11deg) brightness(90%) contrast(88%);
}

.emergency-separation img {
    filter: invert(52%) sepia(87%) saturate(1319%) hue-rotate(309deg) brightness(98%) contrast(93%);
}

.emergency-death img {
    filter: invert(44%) sepia(44%) saturate(1816%) hue-rotate(218deg) brightness(97%) contrast(92%);
}

.emergency-job img {
    filter: invert(57%) sepia(89%) saturate(418%) hue-rotate(80deg) brightness(94%) contrast(90%);
}

/* Service time icons colors */
.service-time-label img:first-child {
    /* Orange for location */
    filter: invert(70%) sepia(82%) saturate(653%) hue-rotate(359deg) brightness(99%) contrast(95%);
}

/* For specific colored elements */
.hotline-icon {
    filter: invert(61%) sepia(86%) saturate(457%) hue-rotate(81deg) brightness(92%) contrast(91%);
}

.insurance-cta-feature img {
    filter: brightness(0) saturate(100%) invert(65%) sepia(55%) saturate(1582%) hue-rotate(101deg) brightness(96%) contrast(91%);
}

/* Pricing and Contact Cards Grid */
.pricing-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Pricing Card */
.pricing-card {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-direction: column;
}

.pricing-icon {
    width: 40px;
    height: 40px;
}

.pricing-title {
    color: #92400e;
    font-size: 1.5em;
}

.pricing-table {
    background: white;
    border-radius: 15px;
    padding: 20px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #fde68a;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-time {
    color: #475569;
}

.pricing-value {
    font-size: 1.1em;
    font-weight: bold;
}

.pricing-value-normal {
    color: #16a34a;
}

.pricing-value-evening {
    color: #d97706;
}

.pricing-value-night {
    color: #dc2626;
}

.pricing-note {
    background: #fef3c7;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.pricing-note img {
    vertical-align: middle;
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.pricing-note span {
    color: #92400e;
    font-weight: 600;
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 40px;
    height: 40px;
}

.contact-title {
    color: #1e3a8a;
    font-size: 1.5em;
    margin: 0;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.contact-option:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-option-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-option-content {
    flex: 1;
}

.contact-option-label {
    color: #1e293b;
    font-weight: bold;
    display: block;
}

.contact-option-value {
    font-weight: 600;
}

.value-blue {
    color: #2563eb;
}

.value-whatsapp {
    color: #25D366;
}

.value-gray {
    color: #475569;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .pricing-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card,
    .contact-card {
        padding: 25px;
    }

    .pricing-title,
    .contact-title {
        font-size: 1.2em;
    }

    .pricing-row {
        flex-direction: column;
        gap: 5px;
    }

    .pricing-value {
        text-align: right;
    }
}

/* Emergency Final CTA Section */
.emergency-final-cta {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 25px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* Animated Background Pattern */
.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.cta-circle-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 3px solid #ef4444;
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: emergencyPulse 3s infinite;
}

.cta-circle-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid #fbbf24;
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: emergencyPulse 3s infinite 1s;
}

/* Alert Icon */
.cta-alert-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.cta-alert-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

.cta-alert-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

/* Content */
.cta-content {
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    color: #ef4444;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.cta-title {
    color: white;
    font-size: 2.8em;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.cta-highlight {
    color: #fbbf24;
    text-decoration: underline;
    text-decoration-style: wavy;
    text-underline-offset: 8px;
}

/* Service Features */
.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-feature-icon img {
    width: 24px;
    height: 24px;
}

.cta-feature-icon-green {
    background: rgba(16, 185, 129, 0.2);
}

.cta-feature-icon-yellow {
    background: rgba(251, 191, 36, 0.2);
}

.cta-feature-icon-blue {
    background: rgba(59, 130, 246, 0.2);
}

.cta-feature-content {
    text-align: left;
}

.cta-feature-value {
    font-weight: 700;
    font-size: 1.3em;
}

.cta-feature-value-green {
    color: #10b981;
}

.cta-feature-value-yellow {
    color: #fbbf24;
}

.cta-feature-value-blue {
    color: #3b82f6;
}

.cta-feature-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

/* Description */
.cta-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15em;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-align: center;
}

.cta-description strong {
    color: #fbbf24;
}

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

.cta-btn-emergency {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 15px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.4);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.cta-btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: slideGlow 2s infinite;
}

.cta-btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-btn-content img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.cta-btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 15px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-whatsapp img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.cta-btn-emergency:hover,
.cta-btn-whatsapp:hover {
    transform: translateY(-3px);
}

/* Hotline Display */
.cta-hotline {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.cta-hotline-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.cta-hotline-number {
    font-size: 2.5em;
    color: #fbbf24;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-hotline-icon {
    width: 35px;
    height: 35px;
    animation: ring 1s ease-in-out infinite;
}

@media (max-width: 768px) {
    .emergency-final-cta {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 2em;
    }

    .cta-features {
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-emergency,
    .cta-btn-whatsapp {
        width: 100%;
        max-width: 300px;
    }

    .cta-hotline-number {
        font-size: 1.8em;
    }
}

/* Reviews Section Styles */
#reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.review-content {
    display: flex;
    flex-direction: column;
}

.review__wrp {
    margin-bottom: 15px;
}

.review__wrp h3 {
    color: #1e293b;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 5px;
}

.review-service {
    color: #10b981;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-comment {
    color: #475569;
    line-height: 1.7;
    font-size: 1em;
    margin-bottom: 20px;
    font-style: italic;
}

.review-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 2px solid #f1f5f9;
}

.review-rating {
    color: #fbbf24;
    font-size: 1.2em;
}

.review-meta .date {
    color: #94a3b8;
    font-size: 0.85em;
}

.review-footer {
    padding: 0;
}

.write-review-button-wrp {
    text-align: center;
    margin-top: 40px;
}

.write-review-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.write-review-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
    #reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 20px;
    }
}

/* Blog Section Styles */
.blog-section {
    background: white;
    padding: 80px 0;
}

.blog-heading {
    color: #1e293b;
    font-weight: 700;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.blog-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #475569;
    max-width: 800px;
    margin: 0 auto 50px;
}

.blog-container {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e2e8f0;
}

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

.blog-card-header {
    height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-header.gradient-purple {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.blog-card-header.gradient-pink {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.blog-card-content {
    padding: 30px;
}

.blog-date {
    color: #94a3b8;
    font-size: 0.9em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card h3 {
    font-size: 1.4em;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.blog-read-time {
    color: #94a3b8;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-read-more {
    color: #10b981;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #059669;
}

.blog-cta-container {
    text-align: center;
    margin: 60px auto 40px;
    padding: 20px;
    max-width: 800px;
}

.blog-button {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.blog-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.45);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

.blog-cta-description {
    margin-top: 20px;
    color: #64748b;
    font-size: 1em;
    font-weight: 500;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-heading {
        font-size: 1.8em;
    }

    .blog-subtitle {
        font-size: 1em;
    }

    .blog-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-button {
        padding: 16px 35px;
        font-size: 1em;
    }
}


/* Insurance CTA Background */
.insurance-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    pointer-events: none;
}

.insurance-cta-content {
    position: relative;
    z-index: 1;
}


/* JQ Form Styles - Modern Design */
#jq_form {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

#jq_form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    background: #f8fafc;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

#jq_form .form-control:focus {
    outline: none;
    border-color: #10b981;
    background: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

#jq_form .form-control::placeholder {
    color: #94a3b8;
}

#jq_form textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

#jq_form .my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

#jq_form .my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

#jq_form .mb-0 {
    margin-bottom: 0 !important;
}

#jq_form .mt-3 {
    margin-top: 1rem !important;
}

#jq_form .forms__button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#jq_form .forms__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

#jq_form .forms__button:active {
    transform: translateY(0);
}

#jq_form .btn {
    display: inline-block;
}

#jq_form .text-uppercase {
    text-transform: uppercase !important;
}

#jq_form .fw-bold {
    font-weight: bold !important;
}

/* General responsive improvements for all sections */
@media (max-width: 375px) {

    /* Back to Top Button */
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    /* Section titles and subtitles */
    .section-title {
        font-size: 1.5em;
        margin-bottom: 10px;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 0.95em;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    /* Senior Section */
    .senior-section {
        padding: 40px 0;
    }

    .care-badge {
        padding: 8px 20px;
        font-size: 0.85em;
        margin-bottom: 15px;
    }

    .senior-title {
        font-size: 1.8em;
        padding: 0 10px;
    }

    .senior-subtitle {
        font-size: 0.95em;
        padding: 0 10px;
    }

    /* Grid adjustments */
    .grid,
    .service-grid,
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
        padding: 0 10px;
    }

    /* video-benefits-grid handled separately above */

    /* Cards and boxes */
    .card,
    .service-card,
    .feature-card,
    .price-card,
    .benefit-card {
        padding: 15px !important;
        margin-bottom: 10px;
    }

    /* Forms */
    #jq_form input,
    #jq_form select,
    #jq_form textarea {
        font-size: 16px !important;
        padding: 10px !important;
        min-height: 44px;
    }

    #jq_form .forms__button {
        padding: 14px 20px;
        font-size: 14px;
        min-height: 44px;
    }

    /* Videos and images */
    .video-container {
        /* Remove fixed height that causes issues */
        height: auto !important;
        margin-bottom: 20px !important;
    }

    /* Fix video wrapper height */
    .video-wrapper {
        padding-bottom: 56.25% !important;
        /* Maintain aspect ratio */
    }

    /* Video CTA Section Fix for 375px */
    .video-cta {
        margin: 0 !important;
        padding: 0 8px !important;
        position: relative;
        z-index: 1;
        display: block !important;
        clear: both !important;
    }

    .video-cta-box {
        padding: 20px 15px !important;
        border-radius: 15px;
    }

    .video-cta h3 {
        font-size: 1.2em !important;
        margin-bottom: 10px !important;
        line-height: 1.3;
    }

    .video-cta p {
        font-size: 0.9em !important;
        margin-bottom: 15px !important;
    }

    .video-cta-buttons {
        flex-direction: column;
        gap: 10px !important;
    }

    .video-cta-btn-primary,
    .video-cta-btn-secondary {
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
        justify-content: center;
    }

    .video-cta-btn-primary svg,
    .video-cta-btn-secondary svg {
        width: 18px;
        height: 18px;
    }

    /* Buttons */
    .btn,
    .button,
    .cta-button {
        padding: 12px 20px !important;
        font-size: 14px !important;
        min-height: 44px;
        width: 100%;
    }

    /* Lists */
    ul,
    ol {
        padding-left: 20px;
    }

    li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    /* Tables */
    table {
        font-size: 12px !important;
    }

    td,
    th {
        padding: 8px !important;
    }

    /* Ensure no horizontal scroll */
    * {
        max-width: 100vw !important;
    }

    .container {
        padding: 0 8px !important;
    }
}

#jq_form .px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

#jq_form .py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* Success Message */
#jq_success {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 12px;
    color: #14532d;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #jq_form {
        padding: 20px;
    }

    #jq_form .form-control {
        padding: 12px 15px;
        font-size: 15px;
    }

    #jq_form .forms__button {
        padding: 14px 30px;
        font-size: 16px;
    }
}

/* Express Process Card Styles */
.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-title {
    color: #1e293b;
    font-size: 1.5em;
    margin: 0;
}

.process-timeline {
    position: relative;
}

.process-timeline-item.last {
    margin-bottom: 0;
}

.timeline-marker {
    position: relative;
    flex-shrink: 0;
}

.timeline-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.timeline-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.timeline-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.timeline-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.timeline-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.timeline-desc {
    color: #64748b;
    font-size: 0.9em;
    display: block;
}

/* Mobile responsive for Express Process Card */
@media (max-width: 768px) {
    .card-header {
        gap: 15px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle svg {
        width: 30px;
        height: 30px;
    }

    .card-title {
        font-size: 1.3em;
    }

    .timeline-line {
        height: 35px;
        top: 35px;
    }
}

@media (max-width: 480px) {
    .card-header {
        gap: 15px;
        margin-bottom: 20px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
    }

    .icon-circle svg {
        width: 25px;
        height: 25px;
    }

    .card-title {
        font-size: 1.2em;
    }

    /* Скрываем линии на мобильных устройствах */
    .timeline-line {
        display: none !important;
    }

    .timeline-content {
        padding-top: 5px;
    }
}

@media (max-width: 375px) {
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .icon-circle {
        width: 45px;
        height: 45px;
    }

    .icon-circle svg {
        width: 22px;
        height: 22px;
    }

    .card-title {
        font-size: 1.1em;
    }

    .process-timeline-item {
        margin-bottom: 15px;
        gap: 12px;
    }

    .timeline-number {
        width: 32px;
        height: 32px;
        font-size: 0.85em;
    }

    /* Полностью убираем линии на самых маленьких экранах */
    .timeline-line {
        display: none !important;
    }

    .timeline-title {
        font-size: 0.95em;
    }

    .timeline-desc {
        font-size: 0.85em;
    }

    .timeline-content {
        padding-top: 3px;
    }
}

/* Emergency Service Section */
.emergency-service-wrapper {
    position: relative;
    z-index: 1;
}

.emergency-badge {
    display: inline-block;
    background: #ef4444;
    color: white;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
}

.emergency-title {
    color: white;
    font-size: 2.8em;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.emergency-title-highlight {
    color: #fbbf24;
    text-decoration: underline;
    text-decoration-style: wavy;
    text-underline-offset: 8px;
}

/* Service Features */
.service-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 35px 0;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-feature-icon.green {
    background: rgba(16, 185, 129, 0.2);
}

.service-feature-icon.yellow {
    background: rgba(251, 191, 36, 0.2);
}

.service-feature-icon.blue {
    background: rgba(59, 130, 246, 0.2);
}

.service-feature-text {
    text-align: left;
}

.service-feature-value {
    font-weight: 700;
    font-size: 1.3em;
}

.service-feature-value.green {
    color: #10b981;
}

.service-feature-value.yellow {
    color: #fbbf24;
}

.service-feature-value.blue {
    color: #3b82f6;
}

.service-feature-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

/* Emergency Description */
.emergency-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15em;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.emergency-description strong {
    color: #fbbf24;
}

/* CTA Buttons */
.emergency-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.emergency-btn {
    padding: 20px 50px;
    border: none;
    border-radius: 15px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.emergency-btn-red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.4);
}

.emergency-btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 20px 40px;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: slideGlow 2s infinite;
}

@keyframes slideGlow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-icon {
    vertical-align: middle;
    margin-right: 10px;
}

/* Emergency Hotline Display */
.emergency-hotline {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.hotline-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hotline-number {
    font-size: 2.5em;
    color: #fbbf24;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-direction: row;
}

.hotline-number:hover {
    transform: scale(1.05);
    color: #f59e0b;
}

.hotline-icon {
    animation: ring 1s ease-in-out infinite;
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

/* Mobile Responsive for Emergency Service */
@media (max-width: 768px) {
    .emergency-badge {
        font-size: 1em;
        letter-spacing: 2px;
        padding: 8px 20px;
    }

    .emergency-title {
        font-size: 2.2em;
        margin-bottom: 20px;
    }

    .service-features {
        gap: 25px;
        margin: 25px 0;
    }

    .service-feature-icon {
        width: 35px;
        height: 35px;
    }

    .service-feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .service-feature-value {
        font-size: 1.1em;
    }

    .emergency-description {
        font-size: 1.05em;
        margin-bottom: 25px;
        padding: 0 20px;
    }

    .emergency-btn {
        padding: 16px 35px;
        font-size: 1.1em;
    }

    .emergency-btn-whatsapp {
        padding: 16px 30px;
    }

    .hotline-number {
        font-size: 2em;
    }

    .hotline-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .emergency-badge {
        font-size: 0.9em;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
        padding: 7px 18px;
    }

    .emergency-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .service-features {
        gap: 15px;
        margin: 20px 0;
        align-items: center;
    }

    .service-feature {
        width: 100%;
        max-width: 200px;
    }

    .emergency-description {
        font-size: 1em;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .emergency-cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .emergency-btn {
        width: 100%;
        padding: 14px 25px;
        font-size: 1em;
    }

    .emergency-btn-whatsapp {
        width: 100%;
        padding: 14px 25px;
    }

    .emergency-hotline {
        margin-top: 30px;
        padding-top: 20px;
    }

    .hotline-number {
        font-size: 1.6em;
        gap: 10px;
    }
}

@media (max-width: 375px) {
    .emergency-badge {
        font-size: 0.85em;
        letter-spacing: 1px;
        padding: 6px 15px;
        border-radius: 6px;
    }

    .emergency-title {
        font-size: 1.5em;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .emergency-title-highlight {
        text-underline-offset: 4px;
    }

    .service-features {
        margin: 15px 0;
    }

    .service-feature-icon {
        width: 32px;
        height: 32px;
    }

    .service-feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .service-feature-value {
        font-size: 1em;
    }

    .service-feature-label {
        font-size: 0.85em;
    }

    .emergency-description {
        font-size: 0.95em;
        padding: 0 10px;
        line-height: 1.6;
    }

    .emergency-btn {
        padding: 12px 20px;
        font-size: 0.95em;
        border-radius: 12px;
    }

    .emergency-btn svg {
        width: 22px;
        height: 22px;
    }

    .hotline-label {
        font-size: 0.85em;
    }

    .hotline-number {
        font-size: 1.3em;
        gap: 8px;
    }

    .hotline-icon {
        width: 25px;
        height: 25px;
    }
}

/* Mobile Responsive for Lagerung Section */
@media (max-width: 768px) {
    .lagerung-section {
        padding: 50px 0;
    }

    .lagerung-header {
        margin-bottom: 40px;
    }

    .lagerung-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .lagerung-subtitle {
        font-size: 1.05em;
        padding: 0 20px;
    }

    .lagerung-features {
        gap: 30px;
        padding: 0 15px;
    }

    .lagerung-feature {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .lagerung-feature-header {
        margin-bottom: 20px;
    }

    .lagerung-feature-header h3 {
        font-size: 1.3em;
    }

    .lagerung-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .lagerung-feature-description {
        font-size: 0.95em;
        margin-bottom: 20px;
    }

    .lagerung-locations {
        margin-top: 25px;
    }

    .lagerung-locations-title {
        font-size: 1.1em;
        margin-bottom: 15px;
    }

    .lagerung-locations-grid {
        gap: 15px;
    }

    .location-card {
        padding: 15px;
    }

    .security-list {
        gap: 12px;
    }

    .security-item {
        padding: 12px;
    }

    .security-text {
        font-size: 0.9em;
    }

    .pricing-boxes {
        gap: 15px;
    }

    .pricing-box {
        padding: 20px;
    }

    .pricing-box h4 {
        font-size: 1.1em;
    }

    .special-banner {
        padding: 35px 25px;
        margin-top: 40px;
    }

    .special-title {
        font-size: 1.3em;
        margin-bottom: 25px;
    }

    .special-grid {
        gap: 20px;
    }

    .special-item {
        padding: 20px;
    }

    .special-item h4 {
        font-size: 1.1em;
    }

    .special-cta-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .lagerung-section {
        padding: 40px 0;
    }

    .lagerung-header {
        margin-bottom: 30px;
    }

    .lagerung-title {
        font-size: 1.5em;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .lagerung-subtitle {
        font-size: 0.95em;
        padding: 0 15px;
        line-height: 1.5;
    }

    .lagerung-features {
        gap: 25px;
        padding: 0 10px;
    }

    .lagerung-feature {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .lagerung-feature-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 15px;
    }

    .lagerung-feature-header h3 {
        font-size: 1.2em;
    }

    .lagerung-icon {
        width: 45px;
        height: 45px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .lagerung-locations-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .location-card {
        padding: 12px;
        text-align: center;
    }

    .security-list {
        gap: 10px;
    }

    .security-item {
        padding: 10px;
        flex-direction: column;
        text-align: center;
    }

    .security-icon {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .security-text {
        font-size: 0.85em;
    }

    .pricing-boxes {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pricing-box {
        padding: 18px;
    }

    .special-banner {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .special-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .special-item {
        padding: 18px;
        text-align: center;
    }

    .special-item-icon {
        margin-bottom: 10px;
    }

    .special-cta {
        margin-top: 20px;
        padding-top: 20px;
    }
}

@media (max-width: 375px) {
    .lagerung-section {
        padding: 35px 0;
    }

    .lagerung-title {
        font-size: 1.3em;
        padding: 0 10px;
    }

    .lagerung-subtitle {
        font-size: 0.9em;
        padding: 0 10px;
    }

    .lagerung-features {
        gap: 20px;
        padding: 0 10px;
    }

    .lagerung-feature {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .lagerung-feature-header h3 {
        font-size: 1.1em;
    }

    .lagerung-icon {
        width: 40px;
        height: 40px;
    }

    .lagerung-feature-description {
        font-size: 0.9em;
        line-height: 1.5;
    }

    .lagerung-locations-title {
        font-size: 1em;
    }

    .location-card {
        padding: 10px;
    }

    .location-card strong {
        font-size: 0.95em;
    }

    .location-card p {
        font-size: 0.85em;
    }

    .security-item {
        padding: 8px;
    }

    .security-icon {
        width: 30px;
        height: 30px;
    }

    .security-icon svg {
        width: 20px;
        height: 20px;
    }

    .security-text {
        font-size: 0.8em;
    }

    .pricing-box {
        padding: 15px;
        border-radius: 10px;
    }

    .pricing-box h4 {
        font-size: 1em;
        margin-bottom: 8px;
    }

    .pricing-size {
        font-size: 1.2em;
        margin-bottom: 8px;
    }

    .pricing-ideal {
        font-size: 0.85em;
        margin-bottom: 10px;
    }

    .pricing-amount {
        font-size: 1.1em;
    }

    .special-banner {
        padding: 25px 15px;
        border-radius: 15px;
        margin-top: 30px;
    }

    .special-title {
        font-size: 1.15em;
        margin-bottom: 20px;
    }

    .special-item {
        padding: 15px;
        border-radius: 10px;
    }

    .special-item h4 {
        font-size: 1em;
        margin-bottom: 8px;
    }

    .special-item p {
        font-size: 0.85em;
    }

    .special-highlight {
        font-size: 0.9em;
    }

    .special-cta-text {
        font-size: 0.9em;
        line-height: 1.4;
    }
}

/* Prozess Section Styles */
.prozess-section {
    background: #f8fafc;
    padding: 80px 0;
    overflow-x: hidden;
}

.prozess-header {
    text-align: center;
    margin-bottom: 60px;
}

.prozess-title {
    color: #1e293b;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.prozess-subtitle {
    color: #475569;
    font-size: 1.15em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero title mobile margin */
@media (max-width: 768px) {
    .hero-title,
    .hero-title-desktop {
        margin-top: 20px;
    }
}

/* Desktop grid layout for process timeline */
@media (min-width: 1024px) {
    .prozess-timeline {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto 60px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .prozess-timeline .timeline-line {
        display: none;
    }

    .prozess-timeline .timeline-item {
        margin-bottom: 0;
    }

    .prozess-timeline .timeline-number {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto 20px;
    }

    .prozess-timeline .timeline-content {
        text-align: center;
    }

    .prozess-timeline .timeline-icon {
        margin: 0 auto 15px;
    }

    .prozess-timeline .timeline-duration {
        justify-content: center;
    }
}

/* Tablet and smaller - vertical timeline */
@media (max-width: 1023px) {
    .prozess-timeline {
        position: relative;
        max-width: 1000px;
        margin: 0 auto 60px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .prozess-timeline .timeline-line {
        position: absolute;
        left: 30px;
        top: 40px;
        bottom: 40px;
        width: 2px;
        background: linear-gradient(180deg, #e0e7ff 0%, #c7d2fe 100%);
    }

    .prozess-timeline .timeline-item {
        position: relative;
        padding-left: 80px;
        margin-bottom: 40px;
    }
}

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

.prozess-timeline .timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    z-index: 2;
}

.prozess-timeline .timeline-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
    overflow: hidden;
}

.prozess-timeline .timeline-icon {
    width: 50px;
    height: 50px;
    background: #e0e7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.prozess-timeline .timeline-icon svg {
    width: 28px;
    height: 28px;
}

.prozess-timeline .timeline-title {
    color: #1e293b;
    font-size: 1.4em;
    margin-bottom: 12px;
    font-weight: 600;
}

.prozess-timeline .timeline-description {
    color: #475569;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.prozess-timeline .timeline-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6366f1;
    font-size: 0.9em;
    font-weight: 500;
}

.prozess-timeline .timeline-duration svg {
    width: 18px;
    height: 18px;
}

.prozess-cta {
    text-align: center;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border-radius: 25px;
    padding: 50px 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.prozess-cta-title {
    color: white;
    font-size: 2em;
    margin-bottom: 15px;
}

.prozess-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15em;
    margin-bottom: 30px;
}

.prozess-cta-button {
    display: inline-block;
    background: white;
    color: #4f46e5;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.prozess-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Mobile Responsive for Prozess Section */
@media (max-width: 768px) {
    .prozess-section {
        padding: 60px 0;
    }

    .prozess-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .prozess-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .prozess-subtitle {
        font-size: 1.05em;
    }

    .prozess-timeline {
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .prozess-timeline .timeline-line {
        left: 25px;
    }

    .prozess-timeline .timeline-item {
        padding-left: 70px;
        padding-right: 15px;
        margin-bottom: 30px;
    }

    .prozess-timeline .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.3em;
    }

    .prozess-timeline .timeline-content {
        padding: 25px;
        border-radius: 16px;
    }

    .prozess-timeline .timeline-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .prozess-timeline .timeline-icon svg {
        width: 24px;
        height: 24px;
    }

    .prozess-timeline .timeline-title {
        font-size: 1.25em;
        margin-bottom: 10px;
    }

    .prozess-timeline .timeline-description {
        font-size: 0.95em;
    }

    .prozess-cta {
        padding: 40px 30px;
        border-radius: 20px;
        margin: 0 15px;
    }

    .prozess-cta-title {
        font-size: 1.6em;
    }

    .prozess-cta-text {
        font-size: 1.05em;
    }

    .prozess-cta-button {
        padding: 15px 30px;
        font-size: 1.05em;
    }
}

@media (max-width: 480px) {
    .prozess-section {
        padding: 50px 0;
    }

    .prozess-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .prozess-title {
        font-size: 1.6em;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .prozess-subtitle {
        font-size: 0.95em;
        line-height: 1.5;
    }

    .prozess-timeline {
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .prozess-timeline .timeline-line {
        left: 20px;
        width: 1px;
    }

    .prozess-timeline .timeline-item {
        padding-left: 60px;
        margin-bottom: 25px;
    }

    .prozess-timeline .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.1em;
        left: 0;
    }

    .prozess-timeline .timeline-content {
        padding: 20px;
        border-radius: 12px;
    }

    .prozess-timeline .timeline-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .prozess-timeline .timeline-icon svg {
        width: 20px;
        height: 20px;
    }

    .prozess-timeline .timeline-title {
        font-size: 1.1em;
        margin-bottom: 8px;
    }

    .prozess-timeline .timeline-description {
        font-size: 0.9em;
        margin-bottom: 12px;
    }

    .prozess-timeline .timeline-duration {
        font-size: 0.85em;
    }

    .prozess-timeline .timeline-duration svg {
        width: 16px;
        height: 16px;
    }

    .prozess-cta {
        padding: 30px 20px;
        border-radius: 15px;
        margin: 0 10px;
    }

    .prozess-cta-title {
        font-size: 1.3em;
        margin-bottom: 12px;
    }

    .prozess-cta-text {
        font-size: 0.95em;
        margin-bottom: 25px;
    }

    .prozess-cta-button {
        padding: 14px 25px;
        font-size: 1em;
        border-radius: 10px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 375px) {
    .prozess-section {
        padding: 40px 0;
    }

    .prozess-header {
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .prozess-title {
        font-size: 1.4em;
    }

    .prozess-subtitle {
        font-size: 0.9em;
    }

    .prozess-timeline {
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .prozess-timeline .timeline-line {
        display: none;
    }

    .prozess-timeline .timeline-item {
        padding-left: 0;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .prozess-timeline .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.1em;
        position: relative;
        left: auto;
        margin-bottom: 15px;
    }

    .prozess-timeline .timeline-content {
        padding: 20px 15px;
        border-radius: 10px;
        width: 100%;
    }

    .prozess-timeline .timeline-icon {
        width: 35px;
        height: 35px;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .prozess-timeline .timeline-icon svg {
        width: 18px;
        height: 18px;
    }

    .prozess-timeline .timeline-title {
        font-size: 1em;
        margin-bottom: 6px;
    }

    .prozess-timeline .timeline-description {
        font-size: 0.85em;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .prozess-timeline .timeline-duration {
        font-size: 0.8em;
        gap: 5px;
    }

    .prozess-timeline .timeline-duration svg {
        width: 14px;
        height: 14px;
    }

    .prozess-cta {
        padding: 25px 15px;
        border-radius: 12px;
    }

    .prozess-cta-title {
        font-size: 1.15em;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .prozess-cta-text {
        font-size: 0.9em;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .prozess-cta-button {
        padding: 12px 20px;
        font-size: 0.95em;
        border-radius: 8px;
    }
}

/* Kontakt Section Responsive Styles */
.kontakt-section {
    padding: 80px 0;
}

.kontakt-header {
    text-align: center;
    margin-bottom: 50px;
}

.kontakt-title {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.kontakt-subtitle {
    font-size: 1.2em;
    line-height: 1.6;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.kontakt-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
}

.trust-badges-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.google-maps-container {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.google-maps-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Responsive for Kontakt Section */
@media (max-width: 768px) {
    .kontakt-section {
        padding: 60px 0;
    }

    .kontakt-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .kontakt-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .kontakt-subtitle {
        font-size: 1.1em;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .kontakt-form-card {
        padding: 30px;
        border-radius: 16px;
    }

    .contact-info-card {
        padding: 30px;
        border-radius: 16px;
    }

    .trust-badges-card {
        padding: 25px;
        margin-top: 25px;
    }

    .trust-badges-grid {
        gap: 15px;
    }

    .google-maps-container {
        margin-top: 40px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .kontakt-section {
        padding: 50px 0;
    }

    .kontakt-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .kontakt-title {
        font-size: 1.6em;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .kontakt-subtitle {
        font-size: 1em;
        line-height: 1.5;
    }

    .kontakt-grid {
        gap: 25px;
        padding: 0 10px;
    }

    .kontakt-form-card {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .form-header {
        margin-bottom: 20px;
    }

    .form-icon {
        width: 45px;
        height: 45px;
    }

    .form-title {
        font-size: 1.3em;
    }

    #jq_form input,
    #jq_form textarea {
        padding: 12px;
        font-size: 15px;
    }

    .contact-info-card {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .contact-header-title {
        font-size: 1.2em;
    }

    .office-address-box,
    .opening-hours-section,
    .direct-contact-section {
        margin-bottom: 20px;
    }

    .opening-hours-table {
        font-size: 0.9em;
    }

    .direct-contact-link {
        font-size: 0.95em;
        padding: 10px;
    }

    .emergency-hotline {
        padding: 20px;
    }

    .emergency-hotline-number {
        font-size: 1.3em;
    }

    .trust-badges-card {
        padding: 20px 15px;
        margin-top: 20px;
    }

    .trust-badges-title {
        font-size: 1.1em;
        margin-bottom: 15px;
    }

    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-badge-item {
        padding: 12px;
    }

    .trust-badge-number {
        font-size: 1.2em;
    }

    .trust-badge-label {
        font-size: 0.8em;
    }

    .google-maps-container {
        margin-top: 35px;
        height: 300px;
        border-radius: 15px;
    }
}

@media (max-width: 375px) {
    .kontakt-section {
        padding: 40px 0;
    }

    .kontakt-header {
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .kontakt-title {
        font-size: 1.4em;
        margin-bottom: 10px;
    }

    .kontakt-subtitle {
        font-size: 0.9em;
    }

    .kontakt-grid {
        gap: 20px;
        padding: 0 10px;
    }

    .kontakt-form-card {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .form-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 15px;
    }

    .form-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .form-title {
        font-size: 1.2em;
    }

    #jq_form .my-4 {
        margin: 15px 0 !important;
    }

    #jq_form input,
    #jq_form textarea {
        padding: 10px;
        font-size: 14px;
    }

    #jq_form textarea {
        min-height: 80px;
    }

    .forms__button {
        padding: 12px 25px;
        font-size: 15px;
        width: 100%;
    }

    .contact-info-card {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .contact-header {
        margin-bottom: 15px;
    }

    .contact-header-icon {
        width: 35px;
        height: 35px;
    }

    .contact-header-title {
        font-size: 1.1em;
    }

    .office-address-box,
    .opening-hours-section,
    .direct-contact-section {
        margin-bottom: 15px;
        padding: 12px;
    }

    .office-address-title,
    .opening-hours-title,
    .direct-contact-title {
        font-size: 0.95em;
        margin-bottom: 8px;
    }

    .office-address-text {
        font-size: 0.85em;
    }

    .office-metro-badge {
        font-size: 0.8em;
        padding: 3px 8px;
    }

    .opening-hours-table {
        font-size: 0.85em;
    }

    .opening-hours-table td {
        padding: 4px 0;
    }

    .direct-contact-box {
        flex-direction: column;
    }

    .direct-contact-link {
        font-size: 0.9em;
        padding: 8px;
        margin-bottom: 8px;
    }

    .emergency-hotline {
        padding: 15px;
        margin-top: 15px;
    }

    .emergency-hotline-title {
        font-size: 1em;
        margin-bottom: 8px;
    }

    .emergency-hotline-number {
        font-size: 1.2em;
    }

    .emergency-hotline-text {
        font-size: 0.85em;
    }

    .trust-badges-card {
        padding: 15px;
        margin-top: 15px;
        border-radius: 10px;
    }

    .trust-badges-title {
        font-size: 1em;
        margin-bottom: 12px;
    }

    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .trust-badge-item {
        padding: 10px 8px;
        border-radius: 8px;
    }

    .trust-badge-number {
        font-size: 1.1em;
        margin-bottom: 3px;
    }

    .trust-badge-label {
        font-size: 0.75em;
    }

    .trust-badges-footer {
        margin-top: 12px;
        font-size: 0.85em;
    }

    .google-maps-container {
        margin-top: 30px;
        height: 250px;
        border-radius: 10px;
    }
}

.blog-container2{
    grid-template-columns: repeat(2, 1fr) !important;
}