* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.reasons-container {
    max-width: 1400px;
    margin: 0 auto;
}

.reasons-header {
    text-align: center;
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.reasons-header h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.reason-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #feca57);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.reason-number {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.reason-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
    margin: 10px 0;
}

.reason-heart {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-heart {
    opacity: 1;
    transform: scale(1.2);
}

.special-section {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.special-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #8e44ad;
    margin-bottom: 30px;
}

.final-message {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.final-message p {
    font-size: 1.2rem;
    color: #555;
    margin: 15px 0;
    line-height: 1.8;
}

.final-message p:first-child {
    font-size: 1rem;
    color: #888;
}

.final-message p:nth-child(2) {
    font-size: 1.8rem;
    font-weight: 600;
    color: #e91e63;
    font-family: 'Dancing Script', cursive;
}

.final-message p:nth-child(3) {
    font-size: 1.3rem;
    color: #8e44ad;
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem !important;
    color: #e91e63 !important;
    margin-top: 30px !important;
}

footer {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reason-card {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.reason-card:nth-child(1) { animation-delay: 0.1s; }
.reason-card:nth-child(2) { animation-delay: 0.15s; }
.reason-card:nth-child(3) { animation-delay: 0.2s; }
.reason-card:nth-child(4) { animation-delay: 0.25s; }
.reason-card:nth-child(5) { animation-delay: 0.3s; }
