:root {
    --primary-color: #dd1b38;
    --secondary-color: #004445;
    --accent-color: #f8b400;
    --light-color: #faf5e4;
    --theme-footer: linear-gradient(45deg, #1d8744, #1c753e);
}

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background-color: #f9f9f9;
 }

.navbar {
    background-color: rgba(255, 255, 255, 0.8);
}

 .navbar-brand {
     font-weight: 700;
     color: white;
 }

 .nav-link {
     color: #000000;
     font-weight: 500;
 }

 .nav-link:hover {
     color: #bf150e;
 }
 .hbs-list {
    background: rgb(168 165 165 / 50%);
    border: 1px solid #ccc;
    padding: 15px 20px;
    align-items: flex-end;
    justify-content: center;
    border-radius: 7px;
}
.contact-header {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    padding: 80px 0;
    color: white;
    margin-bottom: 50px;
}
.stats-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}
.story-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}
.story-image {
    height: 300px;
    overflow: hidden;
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.search-card h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}
.story-content {
    padding: 30px;
}
.couple-name {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1.5rem;
}
.marriage-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}
.story-text {
    color: #555;
    margin-bottom: 20px;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 107, 107, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}
.video-caption {
    padding: 20px;
    background-color: white;
}
.video-story {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.video-story img {
    width: 100%;
    display: block;
}
.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 20px;
}


.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}
.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}
.filter-btn {
    background-color: white;
    color: var(--dark-color);
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    margin: 0 5px 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.fix_bottom {
    position: absolute;
    bottom: 0;
}
.top_profile {
    min-height: 150px;
}
.contact-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 107, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-form {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.contact_form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
}
input::placeholder {
    color: #888;
    /* Light gray */
    font-style: italic;
    font-size: .8em;
    opacity: 1;
    /* Ensures full visibility */
}
.blink {
    animation: blink-animation 1s linear infinite;
}

@keyframes blink-animation {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}
textarea.form-control {
    height: auto;
    min-height: 150px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    height: 50px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
}
.hide {
    display: none !important;
}
.btn-submit:hover {
    background-color: #ff5252;
    color: white;
    transform: translateY(-2px);
}

.section-title {
    color: var(--secondary-color);
    position: relative;
    margin-bottom: 30px;
    font-weight: 600;
}
.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}
.feature-box {
    text-align: center;
    padding: 30px 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 107, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-text h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-text p {
    color: #666;
    margin-bottom: 0;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 107, 107, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.faq-header {
    background-color: white;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq-header:hover {
    background-color: #f9f9f9;
}

.faq-header i {
    transition: transform 0.3s ease;
}

.faq-header.collapsed i {
    transform: rotate(0deg);
}

.faq-header:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 15px 20px;
    background-color: #f9f9f9;
}
.text-right {
    text-align: right;
}
.hero-section {
    background-image: url(https://www.rayeenmarriagepoint.com/front/assets/images/home-banner.jpeg);
    padding: 150px 0;
    color: white;
    border-radius: 0 0 20px 20px;
    background-repeat: no-repeat;
    background-size: 100%;
}

.search-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #ff5252;
    border-color: #ff5252;
}

.profile-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.profile-card:hover {
    transform: translateY(-10px);
}

.profile-img {
    height: 350px;
    object-fit: cover;
    object-position: top;
    width: 100%;
}

.profile-info {
    padding: 20px;
}

.profile-name {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.profile-details {
    color: #666;
    font-size: 0.9rem;
}

.badge-premium {
    background-color: gold;
    color: #333;
}


footer {
    background: var(--theme-footer);
    color: white;
    padding: 50px 0 20px;
}

.footer-links h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Testimonials slider */
.testimonial-slider {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-role {
    color: #666;
    font-size: 0.9rem;
}

/* Custom range slider */
.range-slider {
    width: 100%;
}

.range-slider .form-range {
    height: 8px;
    border-radius: 4px;
}

.range-slider .range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.profile-header {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    padding: 40px 0;
    color: white;
    margin-bottom: 30px;
}


.profile-img-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.profile-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}



.action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-5px);
}

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

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

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

.profile-info {
    padding: 30px;
}


.profile-age {
    color: var(--primary-color);
    font-weight: 600;
}

.profile-location {
    color: #666;
    margin-bottom: 15px;
}

.profile-bio {
    margin-bottom: 25px;
    line-height: 1.6;
}

.info-item {
    margin-bottom: 15px;
}

.info-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.info-value {
    color: #555;
}

.gallery-item {
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.interest-badge {
    background-color: #f0f0f0;
    color: #555;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.match-percentage {
    background-color: var(--primary-color);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.match-criteria {
    margin-bottom: 10px;
}

.criteria-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.progress {
    height: 8px;
    border-radius: 4px;
}

.progress-bar {
    background-color: var(--primary-color);
}

.back-btn {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
}

.page-header {
    background-image: url(https://www.rayeenmarriagepoint.com/front/assets/images/bg.png?v=1);
    padding: 60px 0;
    color: rgb(51, 146, 25);
    margin-bottom: 30px;
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
}

.filter-sidebar {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
}

.filter-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-weight: 600;
}

.profile-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    margin-bottom: 25px;
    height: 100%;
}

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

.profile-img-container {
    height: 200px;
    overflow: hidden;
}

.profile-card:hover .profile-img {
    transform: scale(1.05);
}

.profile-info {
    padding: 15px;
}


.profile-details {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.profile-actions {
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
}

.badge-premium {
    background-color: gold;
    color: #333;
    font-size: 0.7rem;
    padding: 3px 8px;
}

.form-check-label {
    font-size: 0.9rem;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .page-link {
    color: var(--primary-color);
}

.online-status {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    background-color: #4CAF50;
    border-radius: 50%;
    border: 2px solid white;
}

.profile-img-container {
    position: relative;
}

.verified-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.filter-toggle {
    display: none;
    margin-bottom: 20px;
}

.registration-header {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    padding: 60px 0;
    color: white;
    margin-bottom: 30px;
}

.registration-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 50px;
}

.step-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.step-progress:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #eee;
    z-index: 1;
}

.step-progress-bar {
    position: absolute;
    top: 15px;
    left: 0;
    height: 3px;
    background-color: var(--primary-color);
    z-index: 2;
    transition: width 0.3s ease;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
}

.step-number_reg {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #eee;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 5px;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step.completed .step-number {
    background-color: var(--secondary-color);
    color: white;
}

.step-label {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
}

.step.active .step-label,
.step.completed .step-label {
    color: var(--dark-color);
    font-weight: 600;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.form-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-prev {
    background-color: #f0f0f0;
    color: var(--dark-color);
}

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

.profile-photo-container {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.profile-photo-container:hover {
    border-color: var(--primary-color);
    background-color: rgba(255, 107, 107, 0.05);
}

.photo-icon {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 10px;
}

.photo-preview {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    display: none;
    margin: 0 auto 10px;
}

.interest-badge {
    background-color: #f0f0f0;
    color: #555;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
    cursor: pointer;
}

.interest-badge.selected {
    background-color: var(--primary-color);
    color: white;
}

.privacy-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
}

.login-link {
    color: var(--primary-color);
    font-weight: 600;
}


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

.login-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.login-left {
    position: relative;
    /* Needed for absolute positioning of pseudo-element */
    color: dark;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(https://www.rayeenmarriagepoint.com/front/assets/images/login.jpeg);
    background-size: cover;
    opacity: 0.2;
    /* Adjust this value (0 to 1) for desired opacity */
    z-index: -1;
    /* Places the background behind the content */
}

.login-right {
    background-color: white;
    padding: 60px;
}

.login-logo {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    display: inline-block;
}

.login-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.login-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.contact_formcontrol {
    height: 50px;
    border-radius: 8px;
    padding-left: 15px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
}

.btn-login {
    background-color: var(--primary-color);
    color: white;
    height: 50px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: #ff5252;
    color: white;
    transform: translateY(-2px);
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: #999;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.divider::before {
    margin-right: 10px;
}

.divider::after {
    margin-left: 10px;
}

.social-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: white;
    color: #555;
    font-weight: 500;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.social-login-btn:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
}

.social-login-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.google-btn {
    color: #DB4437;
    border-color: #DB4437;
}

.facebook-btn {
    color: #4267B2;
    border-color: #4267B2;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: #ff5252;
    text-decoration: underline;
}

.register-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.register-link a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.register-link a:hover {
    color: #ff5252;
    text-decoration: underline;
}

.login-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}



.feature-text h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.step-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 107, 107, 0.1);
    line-height: 1;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 107, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.step-content {
    position: relative;
    z-index: 2;
}

.step-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 107, 107, 0.2);
    position: absolute;
    top: -20px;
    left: -15px;
    line-height: 1;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    padding: 80px 0;
    color: white;
    border-radius: 15px;
    margin: 80px 0;
}

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

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 107, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.benefit-content p {
    color: #666;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-step {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-step::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    top: 30px;
    z-index: 1;
}

.left {
    left: 0;
    text-align: right;
}

.right {
    left: 50%;
    text-align: left;
}

.left::after {
    right: -13px;
}

.right::after {
    left: -13px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}