body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #e0e0e0;
}

body {
    background-image: url('/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.heart {
    position: absolute;
    bottom: -50px;
    width: 20px;
    height: 20px;
    background-color: #ff7eb3;
    opacity: 0.7;
    transform: rotate(-45deg);
    animation: flyUp linear infinite;
}

.heart::before,
.heart::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #ff7eb3;
    border-radius: 50%;
}
.heart::before { top: -10px; left: 0; }
.heart::after { top: 0; left: 10px; }

@keyframes flyUp {
    0% { transform: translateY(0) rotate(-45deg); opacity: 1; }
    100% { transform: translateY(-120vh) rotate(-45deg); opacity: 0; }
}

.site-header {
    text-align: center;
    padding: 25px 0;
}

.site-header h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 5.5em;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 192, 203, 0.9), 0 0 20px rgba(255, 192, 203, 0.7);
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 50px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: rgba(40, 30, 45, 0.85);
    border-radius: 15px;
}

.text-column {
    flex: 2; 
    max-width: 65%;
}

.text-column h2 {
    font-size: 2em;
    color: #ffffff;
    margin-top: 0;
}

.text-column p {
    line-height: 1.7;
    font-size: 1em;
    color: #d8cde0;
}

.cta-column {
    flex: 1;
    max-width: 35%;
    background: linear-gradient(135deg, #a445b2, #d41872, #ff0066);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-column h1 { margin: 0 0 20px 0; font-family: 'Montserrat', sans-serif; font-size: 1.8em; color: #fff; text-align: center; }
.cta-column ol { list-style: none; padding: 0; }
.cta-column li { margin-bottom: 25px; }
.cta-column li strong { font-size: 1.2em; color: #fff; }
.cta-column li p { color: #ffe0f0; font-size: 0.9em; margin-top: 5px; }

.login-section {
    text-align: center;
    padding: 40px 0 50px 0;
}

.login-btn-main {
    padding: 18px 60px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2em;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.5);
}

.login-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.7);
}

.testimonials {
    text-align: center;
    padding: 50px 20px;
    background-color: rgba(44, 34, 48, 0.9);
}

.testimonials h2 { font-size: 2.5em; margin-bottom: 50px; color: #fff; }

.testimonials-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial-card {
    background: linear-gradient(to bottom, #654ea3, #eaafc8);
    padding: 25px;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
    max-width: 23%;
    text-align: left;
    color: #f0f0f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.testimonial-header h3 { margin: 0; font-size: 1.2em; color: #fff; }
.testimonial-header span { font-size: 0.9em; opacity: 0.8; }
.testimonial-card hr { border: none; height: 1px; background-color: rgba(255, 255, 255, 0.3); margin-bottom: 15px; }
.testimonial-card p { font-size: 0.95em; line-height: 1.6; }

.testimonial-pagination { margin-top: 40px; }
.testimonial-pagination .dot { display: inline-block; width: 12px; height: 12px; background-color: rgba(255, 255, 255, 0.3); border-radius: 50%; margin: 0 5px; }
.testimonial-pagination .dot.active { background-color: #fff; }

@media (max-width: 1200px) {
    .site-header h1 { font-size: 4em; }
    .main-container { flex-direction: column; align-items: center; }
    .text-column, .cta-column { max-width: 80%; }
    .testimonial-card { max-width: 45%; }
}

@media (max-width: 768px) {
    .site-header h1 { font-size: 3em; }
    .text-column, .cta-column { max-width: 100%; }
    .testimonial-card { max-width: 90%; }
    .main-container { padding: 20px; }
    .text-column h2, .cta-column h1 { font-size: 1.8em; }
}