:root {
    --primary-yellow: #FFD700;
    --primary-blue: #87CEEB;
    --primary-pink: #FFB6C1;
    --dark-blue: #4682B4;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--dark-blue) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: #555 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--dark-blue) !important;
}

.btn-primary {
    background-color: var(--primary-yellow);
    border: none;
    color: #333;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background-color: #FFC800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 200, 0, 0.3);
}

.hero-section {
    background: linear-gradient(135deg, rgba(255,214,0,0.1) 0%, rgba(135,206,235,0.1) 50%, rgba(255,182,193,0.1) 100%);
    padding: 5rem 0;
    border-radius: 0 0 30px 30px;
    margin-bottom: 3rem;
}

.hero-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--dark-blue);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.highlight {
    background-color: var(--primary-yellow);
    padding: 0 5px;
    border-radius: 3px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--dark-blue);
}

.feature-card {
    padding: 1.8rem;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.section-title {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    font-size: 2rem;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-yellow), var(--primary-pink));
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.template-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    margin-bottom: 2rem;
    background-color: white;
    border: none;
}

.template-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.template-img {
    height: 16rem;
    object-fit: cover;
    width: 100%;
}

.template-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-pink);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.template-title {
    font-weight: 600;
    color: var(--dark-blue);
    margin-top: 1rem;
    font-size: 1.2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 1rem 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-blue);
}

.testimonial-role {
    color: #888;
    font-size: 0.85rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-header button {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1rem;
    padding: 1rem 1.5rem;
}

.footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 0.6rem;
    transition: all 0.3s;
    font-size: 1rem;
}

.social-icon:hover {
    background-color: var(--primary-yellow);
    color: #333;
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .template-img {
        height: 14rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-collapse {
        padding: 1rem 0;
    }
    
    .nav-link {
        margin: 0.5rem 0;
        padding: 0.5rem 0;
    }
    
    .hero-section {
        padding: 3.5rem 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-img {
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .template-img {
        height: 12rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-primary {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .template-img {
        height: 10rem;
    }
    
    .template-title {
        font-size: 1.1rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .social-icon {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 0.9rem;
    }
}