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

body {
    font-family: 'Poppins', sans-serif;
    background: #fffbe6;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(90deg, #fcd34d, #fde68a);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header a img {
    max-height: 80px;
    transition: transform 0.3s ease;
    border-radius: 20px;
}

header a img:hover {
    transform: scale(1.1);
}

.nav-list {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-list li a {
    text-decoration: none;
    font-weight: 600;
    color: #1f2937;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

.nav-list li a:hover {
    background: #fbbf24;
    color: #fff;
}

.start-btn {
    text-decoration: none;
    background: #f87171;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.3s, background 0.3s;
}

.start-btn:hover {
    background: #ef4444;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    header {
        align-items: center;
        gap: 15px;
        padding: 20px;
    }
    
    .nav-list {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-list li a {
        width: 100%;
        text-align: center;
    }

    .start-btn {
        max-width: max-content;
        text-align: center;
    }

    .nav-list {
        display: none;
    }
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 330px 80px;
    background: linear-gradient(135deg, #fff9c4, #fef3c7);
    gap: 40px;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: #f59e0b;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero-text p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-text a {
    display: inline-block;
    background: #f87171;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 12px;
    transition: transform 0.3s, background 0.3s;
}

.hero-text a:hover {
    background: #ef4444;
    transform: scale(1.05);
}

.hero img {
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.5s;
}

.hero img:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 50px 40px;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero img {
        max-width: 400px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 30px 20px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero img {
        max-width: 100%;
        border-radius: 15px;
    }

    .hero-text a {
        width: 100%;
        text-align: center;
    }
}

footer {
    background: linear-gradient(180deg, #fde68a, #fcd34d);
    padding: 60px 80px 30px;
    color: #1f2937;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-container h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #b45309;
}

.footer-container ul {
    list-style: none;
    padding: 0;
}

.footer-container ul li {
    margin-bottom: 10px;
}

.footer-container ul li a {
    text-decoration: none;
    color: #1f2937;
    transition: color 0.3s;
}

.footer-container ul li a:hover {
    color: #f87171;
}

.footer-third ul li {
    display: inline-block;
    margin-right: 10px;
}

.footer-third ul li img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.footer-third ul li img:hover {
    transform: scale(1.2);
}

.footer-third p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

footer .copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #374151;
}

@media (max-width: 1024px) {
    footer {
        padding: 50px 40px 25px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-third ul li {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 20px 20px;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .footer-container h3 {
        font-size: 1.1rem;
    }

    .footer-third ul li {
        margin: 0 5px;
    }
}

.terms-policy {
    background: #fffdf5;
    padding: 60px 80px;
    font-family: 'Poppins', sans-serif;
    color: #374151;
}

.terms-policy .container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-policy h2 {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 25px;
    text-align: center;
}

.terms-policy h3 {
    font-size: 1.4rem;
    color: #b45309;
    margin-top: 30px;
    margin-bottom: 15px;
}

.terms-policy h4 {
    font-size: 1.2rem;
    color: #d97706;
    margin-top: 20px;
    margin-bottom: 12px;
}

.terms-policy p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-policy ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.terms-policy ul li {
    margin-bottom: 8px;
    list-style-type: disc;
}

.terms-policy a {
    color: #f87171;
    text-decoration: none;
    transition: color 0.3s;
}

.terms-policy a:hover {
    color: #ef4444;
}

.terms-policy .small-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 25px;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .terms-policy {
        padding: 50px 40px;
    }

    .terms-policy h2 {
        font-size: 1.8rem;
    }

    .terms-policy h3 {
        font-size: 1.3rem;
    }

    .terms-policy h4 {
        font-size: 1.1rem;
    }

    .terms-policy p, .terms-policy ul li {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .terms-policy {
        padding: 30px 20px;
    }

    .terms-policy h2 {
        font-size: 1.6rem;
    }

    .terms-policy h3 {
        font-size: 1.2rem;
    }

    .terms-policy h4 {
        font-size: 1rem;
    }

    .terms-policy p, .terms-policy ul li {
        font-size: 0.9rem;
    }
}

.new-year {
    background: #fff7e6;
    padding: 60px 80px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #374151;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.new-year img {
    max-width: 200px;
    width: 100%;
    margin-bottom: 25px;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.new-year img:hover {
    transform: scale(1.05);
}

.new-year h3 {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 20px;
}

.new-year p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4b5563;
}

@media (max-width: 1024px) {
    .new-year {
        padding: 50px 40px;
        border-radius: 15px;
    }

    .new-year h3 {
        font-size: 1.8rem;
    }

    .new-year p {
        font-size: 1rem;
    }

    .new-year img {
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .new-year {
        padding: 30px 20px;
        margin: 30px 0;
        border-radius: 12px;
    }

    .new-year h3 {
        font-size: 1.6rem;
    }

    .new-year p {
        font-size: 0.95rem;
    }

    .new-year img {
        max-width: 150px;
        margin-bottom: 20px;
    }
}

.faq {
    background: #fff9e6;
    padding: 60px 80px;
    font-family: 'Poppins', sans-serif;
    color: #374151;
}

.faq h2 {
    font-size: 2rem;
    text-align: center;
    color: #f59e0b;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.faq-list-left,
.faq-list-right {
    list-style: none;
    padding: 0;
    flex: 1;
    min-width: 300px;
}

.faq-list li {
    background: #fffdf0;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.faq-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.faq-title img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.faq-title img:hover {
    transform: scale(1.2);
}

.faq-title h3 {
    font-size: 1.15rem;
    color: #b45309;
}

.faq-list li p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

@media (max-width: 1024px) {
    .faq {
        padding: 50px 40px;
    }

    .faq h2 {
        font-size: 1.8rem;
    }

    .faq-title h3 {
        font-size: 1.05rem;
    }

    .faq-list {
        flex-direction: column;
        gap: 25px;
    }

    .faq-list-left,
    .faq-list-right {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 30px 20px;
    }

    .faq h2 {
        font-size: 1.6rem;
    }

    .faq-title img {
        width: 35px;
        height: 35px;
    }

    .faq-title h3 {
        font-size: 1rem;
    }

    .faq-list li {
        padding: 15px;
    }

    .faq-list li p {
        font-size: 0.95rem;
    }
}

@media (max-width: 434px) {
    .faq-title h3 {
        font-size: 0.8rem;
    }

    .faq-list li p {
        font-size: 0.7rem;
    }
}

.contact {
    background: #fffbe6;
    padding: 60px 80px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #374151;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.contact h2 {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact h3 {
    font-size: 1.3rem;
    color: #b45309;
    margin-bottom: 25px;
}

.contact-social {
    background: #fff7d6;
    padding: 40px 60px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 40px;
}

.contact-social h3 {
    font-size: 1.3rem;
    color: #b45309;
    margin-bottom: 20px;
}

.contact-social a {
    display: inline-block;
    margin: 8px 12px;
    padding: 10px 20px;
    background: #f87171;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.contact-social a:hover {
    background: #ef4444;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .contact, .contact-social {
        padding: 50px 40px;
    }

    .contact h2, .contact-social h3 {
        font-size: 1.8rem;
    }

    .contact h3 {
        font-size: 1.2rem;
    }

    .contact p {
        font-size: 1rem;
    }

    .contact-social a {
        padding: 8px 16px;
        margin: 6px 8px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .contact, .contact-social {
        padding: 30px 20px;
    }

    .contact h2, .contact-social h3 {
        font-size: 1.6rem;
    }

    .contact h3 {
        font-size: 1.1rem;
    }

    .contact p {
        font-size: 0.95rem;
    }

    .contact-social a {
        display: block;
        width: 100%;
        margin: 8px 0;
        padding: 10px 0;
        font-size: 0.95rem;
    }
}

.blog {
    background: #fff9e6;
    padding: 60px 80px;
    font-family: 'Poppins', sans-serif;
    color: #374151;
    border-radius: 20px;
    margin: 40px 0;
}

.blog h2 {
    text-align: center;
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 50px;
}

.blog-first {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.blog-first img {
    max-width: 400px;
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.blog-first img:hover {
    transform: scale(1.05);
}

.blog-first-text {
    max-width: 500px;
}

.blog-first-text h3 {
    font-size: 1.5rem;
    color: #b45309;
    margin-bottom: 15px;
}

.blog-first-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4b5563;
}

.blog-first-text a {
    display: inline-block;
    background: #f87171;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

.blog-first-text a:hover {
    background: #ef4444;
    transform: scale(1.05);
}

.blog-second {
    background: #fffdf0;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.blog-second img {
    max-width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.blog-second img:hover {
    transform: scale(1.05);
}

.blog-second h3 {
    font-size: 1.4rem;
    color: #b45309;
    margin-bottom: 12px;
}

.blog-second p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-second a {
    display: inline-block;
    background: #f87171;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

.blog-second a:hover {
    background: #ef4444;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .blog {
        padding: 50px 40px;
    }

    .blog h2 {
        font-size: 1.8rem;
    }

    .blog-first {
        flex-direction: column;
        text-align: center;
    }

    .blog-first-text h3 {
        font-size: 1.3rem;
    }

    .blog-first-text p {
        font-size: 1rem;
    }

    .blog-first-text a {
        padding: 10px 20px;
    }

    .blog-second h3 {
        font-size: 1.3rem;
    }

    .blog-second p {
        font-size: 0.95rem;
    }

    .blog-second a {
        padding: 8px 18px;
    }
}

@media (max-width: 768px) {
    .blog {
        padding: 30px 20px;
    }

    .blog h2 {
        font-size: 1.6rem;
    }

    .blog-first-text h3, .blog-second h3 {
        font-size: 1.1rem;
    }

    .blog-first-text p, .blog-second p {
        font-size: 0.9rem;
    }

    .blog-first-text a, .blog-second a {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
}

.about {
    background: #fff8e6;
    padding: 60px 80px;
    font-family: 'Poppins', sans-serif;
    color: #374151;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about h2 {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 35px;
}

.about h3 {
    font-size: 1.4rem;
    color: #b45309;
    margin-top: 25px;
    margin-bottom: 15px;
}

.about p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .about {
        padding: 50px 40px;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .about h3 {
        font-size: 1.25rem;
    }

    .about p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 30px 20px;
    }

    .about h2 {
        font-size: 1.6rem;
    }

    .about h3 {
        font-size: 1.15rem;
    }

    .about p {
        font-size: 0.95rem;
    }
}
