* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0b0b0b;
    color: #fff;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(251, 131, 3, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(251, 131, 3, 0.8);
    }
}

/* Main Content */
main {
    background-color: #0b0b0b;
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.card-above-lines {
    background: white;
    max-width: 900px;
    margin: 0 auto 30px auto;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    animation: fadeInDown 0.8s ease;
}

.card-above-lines:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-above-lines h2 {
    font-size: 28px;
    color: #f70505;
    margin: 0;
}

.text-lines {
    animation: fadeInUp 0.8s ease;
}

.text-lines h3 {
    font-size: 32px;
    color: #fbee02;
    margin: 15px 0;
    animation: pulse 2s infinite;
}

.text-lines h1 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 10px 0;
}

.text-lines h1 span {
    color: red;
}

.video-container {
    max-width: 700px;
    margin: 0 auto 40px auto;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease;
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    width: 100%;
    height: 340px;
    border: none;
    display: block;
}

/* WhatsApp Buttons - Fixed Hover Effects */
.whatsapp-button {
    background: linear-gradient(135deg, #fb8303, #f22004);
    color: #fff;
    padding: 14px 28px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: block;
    max-width: 500px;
    width: 90%;
    margin: 20px auto;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #f22004, #fb8303);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 131, 3, 0.4);
    color: #fff;
}

.whatsapp-button:active {
    transform: translateY(0);
}

.whatsapp-button-primary {
    background: linear-gradient(135deg, #fb8303, #f22004);
    color: #fff;
    padding: 14px 28px;
    font-size: 25px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin: 10px auto;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.whatsapp-button-primary:hover {
    background: linear-gradient(135deg, #f22004, #fb8303);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 131, 3, 0.4);
    color: #fff;
}

.whatsapp-button-secondary {
    background: linear-gradient(135deg, #fb8303, #f22004);
    color: #fff;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin: 10px auto;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-button-secondary:hover {
    background: linear-gradient(135deg, #f22004, #fb8303);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 131, 3, 0.4);
    color: #fff;
}

.whatsapp-button-success {
    background: linear-gradient(135deg, #fb8303, #f22004);
    color: #fff;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-button-success:hover {
    background: linear-gradient(135deg, #f22004, #fb8303);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 131, 3, 0.4);
    color: #fff;
}

/* Sections */
.special-offers {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.class {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.people {
    background: #110000;
    padding: 60px 20px;
    text-align: center;
}

.tdt {
    background: #f8f9fa;
    padding: 60px 20px;
}

.testimonials {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.faq-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 20px;
}

.mentor-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

.review-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.marketing-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.stories-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* WhatsApp Top Button */
.whatsapp-top-btn {
    display: block;
    max-width: 650px;
    margin: 0 auto 30px auto;
    background: #000;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInDown 0.8s ease;
}

.whatsapp-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: #1a1a1a;
    color: #fff;
}

.whatsapp-top-btn h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.whatsapp-top-btn h3 {
    font-size: 16px;
    opacity: 0.9;
}

/* Divider */
.divider-paragraph {
    font-size: 35px;
    color: #0b0b0b;
    margin: 40px 0;
    animation: fadeInUp 0.8s ease;
}

/* Grids */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.offer-card {
    background: #000;
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.offer-card:hover::before {
    left: 100%;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.offer-card h2 {
    color: #fe0202;
    font-size: 60px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.offer-card:hover h2 {
    transform: scale(1.1);
    color: #ff4444;
}

.offer-card h4 {
    color: #fff;
    font-size: 45px;
    margin: 10px 0;
}

.offer-card p {
    color: #fff;
    font-size: 20px;
}

/* People Section */
.people-2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease;
}

.people-2 span {
    color: red;
    font-size: 42px;
}

.people-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.people-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.people-card i {
    font-size: 50px;
    color: #f24f04;
    transition: all 0.3s ease;
}

.people-card:hover i {
    transform: scale(1.2);
    animation: shake 0.5s ease;
}

.people-card p {
    font-size: 25px;
    color: red;
    margin-top: 15px;
}

/* Live Class Section */
.live {
    font-size: 50px;
    color: #000;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease;
}

.live span {
    color: orangered;
}

.live-grid {
    max-width: 950px;
    margin: 0 auto;
}

.live-card {
    display: flex;
    background: #0c0c0c;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    align-items: center;
    transition: all 0.3s ease;
    animation: fadeInLeft 0.6s ease;
}

.live-card:hover {
    transform: translateX(10px);
    background: #1a1a1a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.live-card i {
    color: #f24f04;
    font-size: 30px;
    margin-right: 20px;
    padding-left: 20px;
    transition: all 0.3s ease;
}

.live-card:hover i {
    transform: rotate(360deg);
}

.live-card p {
    color: #f4f4f4;
    font-size: 25px;
    text-align: left;
    margin: 0;
}

/* Correct Section */
.correct {
    background: #0c0c0c;
    max-width: 1250px;
    margin: 40px auto;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.correct:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.correct h1 {
    font-size: 50px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.correct h1 span {
    color: red;
}

.just {
    background: orangered;
    max-width: 900px;
    margin: 20px auto;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.just:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(242, 32, 4, 0.4);
}

.just h1 {
    color: white;
    font-size: 40px;
}

/* Testimonials */
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #0c0c0c;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid #fb8303;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.1);
    border-color: #f22004;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 15px;
}

.review {
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.student-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.student-details h4 {
    color: #fbf9f9;
    margin: 0;
}

.student-details span {
    color: #fcf9f9;
    font-size: 14px;
}

.quote-icon {
    font-size: 60px;
    color: #f8ef04;
    line-height: 0;
}

/* Download and Register Buttons */
.download-btn {
    background: linear-gradient(135deg, #fb8303, #f22004);
    color: #fff;
    padding: 14px 28px;
    font-size: 25px;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    display: block;
    width: 90%;
    max-width: 700px;
    margin: 30px auto 0;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.download-btn:hover {
    background: linear-gradient(135deg, #f22004, #fb8303);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 131, 3, 0.4);
    color: #fff;
}

.download-btn span {
    font-size: 15px;
    font-weight: 300;
    display: block;
    margin-top: 5px;
}

.register-btn {
    background: linear-gradient(135deg, #fb8303, #f22004);
    color: #fff;
    padding: 14px 28px;
    font-size: 35px;
    font-weight: 800;
    border-radius: 20px;
    text-decoration: none;
    display: block;
    width: 90%;
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.register-btn:hover {
    background: linear-gradient(135deg, #f22004, #fb8303);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 131, 3, 0.4);
    color: #fff;
}

.register-btn span {
    font-size: 15px;
    font-weight: 300;
    display: block;
    margin-top: 8px;
}

/* Target Audience */
.odt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.odt-1, .odt-2 {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.odt-1:hover, .odt-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.odt-1 h1, .odt-2 h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.odt-1 p, .odt-2 p {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #333;
    transition: all 0.3s ease;
}

.odt-1 p:hover, .odt-2 p:hover {
    transform: translateX(5px);
}

.odt-1 .fa-close {
    position: absolute;
    left: 0;
    top: 3px;
    color: #ff4757;
}

.odt-2 .fa-check {
    position: absolute;
    left: 0;
    top: 3px;
    color: #2ed573;
}

/* FAQ Section */
.faq-section h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1c1c1e;
    animation: fadeInDown 0.8s ease;
}

.faq-section h1 span {
    color: #f22004;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #fff, #f5f5f5);
}

.faq-question h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    transition: all 0.3s ease;
}

.faq-question:hover h3 {
    color: #fb8303;
}

.faq-question i {
    color: #fb8303;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9f9f9;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px 25px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Mentor Section */
.mentor-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mentor-section h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: #333;
}

.mentor-image {
    text-align: center;
    animation: fadeInLeft 0.8s ease;
}

.mentor-image img {
    max-width: 300px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.mentor-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mentor-image h2 {
    margin-top: 20px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.mentor-image:hover h2 {
    color: #fb8303;
}

.mentor-image h3 {
    color: #666;
    font-size: 16px;
    margin: 10px 0;
}

.mentor-info {
    animation: fadeInRight 0.8s ease;
}

.mentor-info p {
    color: #333;
    margin-bottom: 20px;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.mentor-info p:hover {
    transform: translateX(5px);
    color: #555;
}

/* Video Sections */
.section-heading h1 {
    text-align: center;
    color: orangered;
    font-size: 50px;
    margin-bottom: 40px;
    font-weight: 900;
    animation: fadeInDown 0.8s ease;
}

.section-heading h1 span {
    color: #000;
}

.heading h1 {
    color: orangered;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease;
}

.heading h1 span {
    color: #000;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
    align-items: center;
}

.review-video-card {
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.review-video-card:hover {
    transform: translateY(-10px);
}

.review-video-card video {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.review-video-card video:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.review-video-card h3 {
    margin-top: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.review-video-card:hover h3 {
    color: #fb8303;
}

.video-grid iframe {
    width: 100%;
    max-width: 550px;
    height: 310px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.video-grid iframe:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1c1c1e, #0a0a0a);
    padding: 50px 20px 20px;
    margin-top: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section {
    text-align: center;
    transition: all 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-5px);
}

.footer-section h3 {
    color: #fb8303;
    font-size: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-section:hover h3 {
    text-shadow: 0 0 10px rgba(251, 131, 3, 0.5);
}

.footer-section p {
    color: #e0e0e0;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
    margin: 8px 0;
}

.credits {
    color: #fb8303;
}

.developer-link {
    color: #fb8303;
    text-decoration: none;
    transition: all 0.3s ease;
}

.developer-link:hover {
    text-decoration: underline;
    color: #f22004;
}

.admin-small-link {
    margin-top: 10px;
}

.admin-link-small {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.admin-link-small:hover {
    color: #fb8303;
    text-decoration: underline;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20b859;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    .text-lines h1 { font-size: 35px; }
    .text-lines h3 { font-size: 28px; }
    .video-grid iframe { max-width: 500px; height: 280px; }
}

@media (max-width: 768px) {
    .text-lines h1 { font-size: 28px; }
    .text-lines h3 { font-size: 22px; }
    .card-above-lines h2 { font-size: 20px; }
    .video-container iframe { height: 200px; }
    .divider-paragraph { font-size: 24px; }
    .people-2 { font-size: 28px; }
    .people-2 span { font-size: 30px; }
    .live { font-size: 32px; }
    .live-card { flex-direction: column; text-align: center; }
    .live-card i { margin: 0 0 15px 0; padding: 0; }
    .live-card p { text-align: center; font-size: 18px; }
    .correct h1 { font-size: 28px; }
    .just h1 { font-size: 24px; }
    .testimonials .container h2 { font-size: 24px; }
    .download-btn { font-size: 18px; }
    .section-heading h1 { font-size: 32px; }
    .heading h1 { font-size: 32px; }
    .video-grid { grid-template-columns: 1fr; }
    .video-grid iframe { max-width: 100%; height: 200px; }
    .register-btn { font-size: 22px; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 28px; bottom: 20px; right: 20px; }
    .offer-card h2 { font-size: 40px; }
    .offer-card h4 { font-size: 30px; }
    .offer-card p { font-size: 16px; }
    .people-card p { font-size: 20px; }
    .faq-section h1 { font-size: 28px; }
    .faq-question h3 { font-size: 16px; }
    .mentor-section h1 { font-size: 28px; }
}

@media (max-width: 480px) {
    .text-lines h1 { font-size: 22px; }
    .text-lines h3 { font-size: 18px; }
    .card-above-lines h2 { font-size: 16px; }
    .offer-card h2 { font-size: 36px; }
    .offer-card h4 { font-size: 24px; }
    .people-2 { font-size: 22px; }
    .live { font-size: 24px; }
    .correct h1 { font-size: 22px; }
    .register-btn { font-size: 18px; }
}