* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url('https://images.unsplash.com/photo-1513258496098-dae3319d31c2?q=80&w=2070&auto=format&fit=crop') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.7), rgba(230, 57, 70, 0.5));
    z-index: -1;
}

/* Beta Tag */
.beta-tag {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #101585; /* Navy Blue */
    color: #fff; /* White text */
    padding: 6px 18px;
    border-radius: 20px;
    font-family: 'Lato', sans-serif; /* Professional sans-serif font */
    font-size: 0.9rem;
    font-weight: 600; /* Semi-bold for impact */
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease; /* Smooth hover transition */
}

.beta-tag:hover {
    background: #2a3a9b; /* Lighter navy blue on hover */
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in-out;
}

.subtitle {
    font-size: 1.6rem;
    color: #f4a261;
    max-width: 600px;
}

.highlight {
    color: #e63946;
    font-weight: 700;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 1.2rem;
    color: #fff;
    flex-wrap: wrap;
}

.hero-stats span {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
}

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

.cta-primary, .cta-secondary {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary {
    background: linear-gradient(135deg, #f4a261, #e63946);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-primary:hover {
    background: linear-gradient(135deg, #e08f44, #d32f2f);
    transform: scale(1.05);
}

.cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
    margin-top: 30px;
    text-align: center;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 2rem;
    color: #fff;
    animation: bounce 2s infinite;
    transition: color 0.3s ease;
}

.scroll-indicator i:hover {
    color: #f4a261;
}

/* General Container */
.container {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 60px 30px;
    text-align: center;
    color: #444;
}

/* Section Headings */
h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Why Us Section */
.why-us {
    background: #fff;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.why-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
}

.why-item.reverse {
    flex-direction: row-reverse;
}

.why-text {
    flex: 1;
    text-align: left;
}

.why-icon {
    font-size: 2.5rem;
    color: #2a5298;
    margin-bottom: 20px;
}

.why-text h3 {
    font-size: 1.8rem;
    color: #2a5298;
    margin-bottom: 15px;
}

.why-text p {
    font-size: 1.1rem;
    color: #555;
    max-width: 400px;
}

.why-visual {
    flex: 1;
    max-width: 500px;
}

.why-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.why-cta {
    margin-top: 60px;
    text-align: center;
}

/* Who’s It For Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.audience-item {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.audience-item:hover {
    transform: translateY(-8px);
}

.audience-item h3 {
    font-size: 1.5rem;
    color: #2a5298;
    margin-bottom: 15px;
}

.audience-item p {
    font-size: 1rem;
    color: #555;
}

/* Testimonials Section */
.testimonials {
    background: #fff;
}

/* Feedback Section */
.feedback {
    background: #fff;
}

.feedback-cta {
    margin-top: 20px;
    text-align: center;
}

/* Testimonial Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.testimonial-grid blockquote {
    background: #fef9e7;
    padding: 25px;
    border-radius: 15px;
    font-style: italic;
    color: #555;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.testimonial-grid cite {
    font-style: normal;
    color: #2a5298;
    font-weight: 600;
    margin-top: 15px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #f4a261, #e63946);
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #e08f44, #d32f2f);
    transform: scale(1.05);
}

/* Footer */
footer {
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    color: #777;
}

footer a {
    color: #2a5298;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

.fade-in-section {
    opacity: 0;
    animation: slideUp 1s ease-in-out forwards;
}

.fade-in-section:nth-child(1) { animation-delay: 0.2s; }
.fade-in-section:nth-child(2) { animation-delay: 0.4s; }
.fade-in-section:nth-child(3) { animation-delay: 0.6s; }
.fade-in-section:nth-child(4) { animation-delay: 0.8s; }
.fade-in-section:nth-child(5) { animation-delay: 1.0s; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    .subtitle { font-size: 1.3rem; }
    .hero-stats { gap: 20px; font-size: 1rem; }
    .cta-primary, .cta-secondary { padding: 12px 30px; font-size: 1rem; }
    h2 { font-size: 2.2rem; }
    .container { padding: 40px 20px; }
    .why-item { flex-direction: column; gap: 20px; }
    .why-item.reverse { flex-direction: column; }
    .why-text { text-align: center; }
    .why-visual img { height: 200px; }
    .audience-item, .testimonial-grid blockquote { min-height: 160px; }
    .scroll-indicator i { font-size: 1.5rem; }
    .beta-tag {
        font-size: 0.8rem;
        padding: 5px 15px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .subtitle { font-size: 1.1rem; }
    .hero-stats { flex-direction: column; gap: 10px; font-size: 0.9rem; }
    .cta-container { flex-direction: column; gap: 15px; }
    h2 { font-size: 1.8rem; }
    .why-text h3 { font-size: 1.5rem; }
    .why-text p { font-size: 1rem; }
    .why-visual img { height: 150px; }
    .scroll-indicator i { font-size: 1.2rem; }
    .scroll-indicator { margin-top: 20px; }
    .beta-tag {
        font-size: 0.7rem;
        padding: 4px 12px;
        top: 10px;
        right: 10px;
    }
}