body,
ul,
li,
a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: Arial, sans-serif;
    color: var(--text-color-footer);
}

html {
    scroll-behavior: smooth;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader::after {
    content: '';
    border: 8px solid #f3f3f3;
    border-top: 8px solid var(--success-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#dynamic-line {
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
    display: inline-block;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    z-index: 1000;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

.back-to-top:hover {
    background-color: #0c7474;
    transform: scale(1.1);
}

.back-to-top::before {
    content: '↑';
    font-size: 24px;
}

:root {
    --primary-color: #ff6d1f;
    --accent-color: #ffcc00;
    --text-color: #000000;
    --success-color: #0c7474;
    --background-color: #8dbdbd;
    --bg-text-color: #ffffff;
    --text-color-footer: #ffffff;
    --text-tale: #018786;
}

/* Header */
.site-header {
    background-color: #cbe9e7;
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    transition: transform 0.6s, border-radius 0.6s;
    z-index: 9999;
}

/* Header */
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    color: var(--success-color);
    margin: 0 auto;
}

/* Header */
.site-header.shrink {
    transform: scale(0.90);
    border-radius: 20px;
    color: var(--success-color);
    transition: transform 0.6s, border-radius 0.6s;
    z-index: 9999;
}

@media (max-width: 768px) {

    /* Header */
    .site-header {
        border-radius: 10px;
    }

    /* Header */
    .site-header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .logo .logo-image {
        max-height: 50px;
    }

    /* Navigation Bar */
    .main-nav {
        display: flex;
        align-items: center;
    }
}

.logo .logo-image {
    max-height: 60px;
    width: auto;
    height: auto;
    max-width: 100%;
}

/* Navigation Bar */
.main-nav ul {
    display: flex;
    gap: 20px;
}

/* Navigation Bar */
.main-nav ul li a {
    color: var(--text-color);
    font-size: 1em;
    font-weight: bold;
    transition: color 0.3s;
}

/* Navigation Bar */
.main-nav ul li a:hover {
    color: var(--success-color);
}

.menu-toggle {
    display: none;
}

@media (max-width: 768px) {

    /* Navigation Bar */
    .main-nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
    }

    /* Navigation Bar */
    .main-nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 2em;
    }
}

/* Front Page */
.front-page {
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: calc(100vh - 100px); */
    padding: 20px;
    background: linear-gradient(to top, #cbe9e7, white);
}

/* Front Page */
.front-page .intro {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

/* Front Page */
.front-page .content {
    max-width: 50%;
}

/* Front Page */
.front-page .content h1 {
    font-size: 2.5em;
    color: var(--success-color);
    margin-bottom: 10px;
}

#line3 {
    font-size: 0.8em;
    color: var(--primary-color);
}

/* Front Page */
.front-page .content p {
    font-size: 1.2em;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: justify;
}

.cta-button {
    padding: 10px 20px;
    background-color: var(--success-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--text-tale);
}

/* Front Page */
.front-page .book-cover {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Front Page */
.front-page .book-cover img {
    width: 80%;
    border-radius: 10px;
    display: flex;
}

.perks-title {
    font-size: 1.5em;
    color: var(--success-color);
    margin-bottom: 10px;
}

.perks-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: justify;
}

.perks-list li {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1.2em;
}

.perks-list li strong {
    color: var(--success-color);
}

@media (max-width: 768px) {

    /* Navigation Bar */
    .main-nav ul {
        display: none;
        flex-direction: column;
        gap: 20px;
        position: absolute;
        background-color: var(--success-color);
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        z-index: 1;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding: 10px 0;
    }

    /* Navigation Bar */
    .main-nav ul li {
        text-align: center;
    }

    /* Navigation Bar */
    .main-nav ul li a {
        color: var(--bg-text-color);
        font-size: 1.2em;
        font-weight: bold;
        transition: color 0.3s, background-color 0.3s;
        padding: 10px 15px;
        display: block;
    }

    /* Navigation Bar */
    .main-nav ul li a:hover {
        color: var(--text-color-footer);
        background-color: rgba(255, 255, 255, 0.2);
    }

    /* Front Page */
    .front-page {
        flex-direction: column;
        height: auto;
    }

    /* Front Page */
    .front-page .intro {
        flex-direction: column;
        align-items: center;
    }

    /* Front Page */
    .front-page .content {
        max-width: 100%;
        text-align: center;
    }

    /* Front Page */
    .front-page .content h1 {
        font-size: 2em;
    }

    /* Front Page */
    .front-page .content p {
        font-size: 1em;
        text-align: center;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {

    /* Header */
    .site-header {
        padding: 10px 15px;
    }

    /* Navigation Bar */
    .main-nav ul li a {
        font-size: 0.9em;
    }

    /* Front Page */
    .front-page .content h1 {
        font-size: 1.5em;
    }

    /* Front Page */
    .front-page .content p {
        font-size: 0.9em;
        text-align: center;
    }

    .cta-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

#about {
    scroll-margin-top: -150px;
}

#books {
    scroll-margin-top: 50px;
}

#newsletter-signup {
    scroll-margin-top: 100px;
}

/* Newsletter Signup */
.newsletter-signup {
    z-index: 10;
    margin: 2% 5%;
    padding: 20px 20px;
    background-color: var(--success-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--bg-text-color);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.newsletter-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.newsletter-content form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.newsletter-content input[type="email"] {
    padding: 10px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.newsletter-content .cta-button {
    padding: 10px 20px;
    background-color: var(--success-color);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    max-width: 200px;
}

.newsletter-content .cta-button:hover {
    background-color: var(--text-tale);
}

.success-message {
    margin-top: 10px;
    color: var(--success-color);
    font-weight: bold;
}

@media (max-width: 768px) {

    /* Newsletter Signup */
    .newsletter-signup {
        margin-top: 2% 5%;
        padding: 30px 15px;
    }

    .newsletter-content h2 {
        font-size: 1.5rem;
    }

    .newsletter-content p {
        font-size: 0.9rem;
    }

    .newsletter-content input[type="email"] {
        width: 90%;
    }

    .newsletter-content .cta-button {
        width: 90%;
    }
}

@media (max-width: 480px) {

    /* Newsletter Signup */
    .newsletter-signup {
        margin-top: 5%;
        padding: 25px 15px;
    }

    .newsletter-content h2 {
        font-size: 1.2rem;
    }

    .newsletter-content p {
        font-size: 0.8rem;
    }

    .newsletter-content input[type="email"] {
        width: 100%;
    }

    .newsletter-content .cta-button {
        width: 100%;
    }
}

/* Vision Section */
.vision-section {
    padding: 20px 10px;
}

/* Vision Section */
.vision-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.vision-content {
    flex: 1;
    max-width: 600px;
}

.vision-content h2 {
    font-size: 2.5em;
    color: var(--success-color);
    margin-bottom: 20px;
}

.vision-content p {
    font-size: 1.2em;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: justify;
}

.vision-content .vision-points {
    list-style-type: none;
    margin-bottom: 30px;
}

.vision-content .vision-points li {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--text-color);
    text-align: justify;
}

.vision-content .vision-points li strong {
    color: var(--success-color);
}

.vision-image {
    flex: 1;
    max-width: 500px;
}

.vision-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {

    /* Vision Section */
    .vision-section .container {
        flex-direction: column;
        text-align: center;
    }

    .vision-content,
    .vision-image {
        max-width: 100%;
    }

    .vision-image {
        margin-top: 20px;
    }
}

/* About Us Section */
.about-us-section {
    background-color: white;
    padding: 60px 20px;
}

/* About Us Section */
.about-us-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    max-width: 600px;
}

.about-content h2 {
    font-size: 2.5em;
    color: var(--success-color);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.2em;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: justify;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    max-width: 100%;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {

    /* About Us Section */
    .about-us-section .container {
        flex-direction: column;
        text-align: center;
    }

    .about-content,
    .about-image {
        max-width: 100%;
    }

    .about-image {
        margin-top: 20px;
    }
}

/* Service Cards */
.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1 1 30%;
    min-width: 250px;
}

.service-card h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
}

/* Books Section */
.books-section {
    background-color: var(--bg-text-color);
    padding: 40px 20px;
    text-align: center;
}

/* Books Section */
.books-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Books Section */
.books-section .section-title {
    font-size: 2em;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Books Section */
.books-section .section-description {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.books-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.book-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1 1 30%;
    min-width: 250px;
    text-align: center;
}

.book-covers {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.book-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.book-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    padding: 50px 0;
    color: var(--success-color);
    background-color: var(--bg-text-color);
    text-align: center;
}

/* Contact Section */
.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-section p {
    font-size: 1.2em;
    margin: 30px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

iframe {
    width: 100%;
    border: none;
}

/* Smart Responsive Height for Google Forms */
.google-form-iframe {
    min-height: 1800px;
    /* Desktop (User Selected) */
}

@media (max-width: 1024px) {
    .google-form-iframe {
        min-height: 2000px;
        /* Tablet */
    }
}

@media (max-width: 768px) {
    .google-form-iframe {
        min-height: 2000px;
        /* Mobile */
    }
}

@media (max-width: 480px) {
    .google-form-iframe {
        min-height: 2300px;
        /* Small Mobile buffer */
    }
}

/* Footer */
.site-footer {
    background-color: #cbe9e7;
    color: var(--text-color);
    padding: 40px 20px;
    text-align: left;
}

/* Footer */
.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-logo {
    flex: 1 1 30%;
}

.footer-logo .tagline {
    margin: 10px 0px;
    font-size: 1em;
    color: var(--text-color);
    font-style: italic;
}

.footer-links {
    flex: 1 1 30%;
    text-align: left;
}

.footer-links h3 {
    margin-bottom: 15px;
    font-size: 1.2em;
    color: var(--text-color);
}

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

.footer-links ul li {
    margin: 10px 0;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-left: auto;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--bg-text-color);
}

.link-number {
    margin-right: 10px;
    font-weight: bold;
    color: var(--text-color);
}

.footer-links a {
    color: var(--text-color);
    font-size: 1em;
    font-weight: bold;
    transition: color 0.3s
}

.footer-links a:hover {
    color: var(--success-color);
    text-decoration: underline;

}

.footer-contact {
    flex: 1 1 30%;
}

.footer-contact h3 {
    margin-bottom: 15px;
}

.footer-contact p {
    margin: 5px 0;
    color: var(--text-color);
}

.purchase-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.purchase-link-box {
    flex: 1;
    margin: 0 5px;
}

.purchase-link {
    display: block;
    text-align: center;
    color: var(--bg-text-color);
    background-color: var(--text-color);
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.purchase-link:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 1em;
    color: var(--bg-text);
}

.footer-newsletter-signup {
    background-color: var(--bg-text-color);
    padding: 15px 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border-top: 1px solid #dee2e6;
    min-width: 250px;
    margin: 0 auto;
}

.footer-newsletter-signup h2 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.footer-newsletter-signup form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-newsletter-signup input[type="email"] {
    padding: 8px;
    border: 1px solid var(--text-color);
    border-radius: 5px;
    width: 200px;
    margin-right: 5px;
    font-size: 0.9em;
    color: var(--text-color);
    transition: opacity 0.5s ease;
}

.footer-newsletter-signup .footer-signup-btn {
    padding: 8px 15px;
    background-color: var(--success-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: opacity 0.5s ease;
}

.footer-newsletter-signup .footer-signup-btn:hover {
    background-color: var(--text-tale);
}

.footer-success-message {
    margin-top: 10px;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2em;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.footer-success-message.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-signup-btn.fade-out,
#footerEmail.fade-out {
    opacity: 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo,
    .footer-links,
    .footer-contact {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-newsletter-signup {
        padding: 10px;
    }

    .footer-newsletter-signup h2 {
        font-size: 1.5rem;
    }

    .footer-newsletter-signup input[type="email"] {
        width: 100%;
        margin-right: 0;
    }

    .footer-newsletter-signup .footer-signup-btn {
        width: 100%;
    }

    .footer-newsletter-signup .footer-success-message {
        font-size: 1rem;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 20px 10px;
    }

    .footer-logo .tagline {
        font-size: 0.9em;
        color: var(--text-color);
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 1.1em;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 0.9em;
    }

    .footer-newsletter-signup h2 {
        font-size: 1.2rem;
    }

    .footer-newsletter-signup input[type="email"] {
        font-size: 0.8rem;
    }

    .footer-newsletter-signup .footer-signup-btn {
        font-size: 0.8rem;
    }

    .footer-success-message {
        font-size: 1rem;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icons a {
        font-size: 1.2em;
    }
}

.notification-bar {
    background-color: var(--success-color);
    color: var(--bg-text-color);
    padding: 15px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}




@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    animation: marquee 42s linear infinite;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 30px;
}

.marquee:hover {
    animation-play-state: paused;
}

#closeButton {
    display: none;
}

@media (max-width: 768px) {
    #notificationMessage a {
        display: block;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    #notificationMessage a {
        display: block;
        margin-top: 5px;
    }
}

.close-button {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 30px;
    cursor: pointer;
    margin-left: 15px;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-button:hover {
    color: var(--bg-text-color);
    transform: rotate(180deg);
}

.book-launch-container {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    background: var(--bg-text-color);
}

.book-launch-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.book-launch-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.book-launch-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}



.book-launch-cover {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.book-launch-name {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.book-launch-summary {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
}


.book-launch-countdown {
    margin-bottom: 20px;
}

.book-launch-countdown h4 {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 10px;
}

.book-launch-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #000000;
    align-items: center
}

.book-launch-timer span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    background: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
    min-width: 40px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.book-launch-timer span::after {
    content: attr(data-label);
    display: block;
    font-size: 0.8rem;
    font-weight: normal;
    color: #777;
    margin-top: 5px;
}

.book-launch-free-offer {
    background: var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 20px 30px 20px;
    margin-bottom: 20px;
}

.book-launch-free-offer p {
    font-size: 1rem;
    color: var(--bg-text-color);
    margin-bottom: 20px;
}

.book-launch-cta {
    background-color: var(--success-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.book-launch-cta:hover {
    background-color: var(--text-tale);

}

@media (max-width: 480px) {
    .book-launch-container {
        padding: 10px;
    }

    .book-launch-title {
        font-size: 1.5rem;
    }

    .book-launch-description {
        font-size: 0.8rem;
    }

    .book-launch-card {
        padding: 15px;
    }

    .book-launch-cover {
        margin-bottom: 10px;
    }

    .book-launch-name {
        font-size: 1.2rem;
    }

    .book-launch-summary {
        font-size: 0.8rem;
    }

    .book-launch-countdown h4 {
        font-size: 1rem;
    }


    .book-launch-timer span {
        font-size: 1.2rem;
        min-width: 30px;
        padding: 8px;
    }

    .book-launch-free-offer p {
        font-size: 0.8rem;
    }

    .book-launch-cta {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .book-launch-title {
        font-size: 1.8rem;
    }

    .book-launch-description {
        font-size: 0.9rem;
    }

    .book-launch-name {
        font-size: 1.3rem;
    }

    .book-launch-summary {
        font-size: 0.8rem;
    }

    .book-launch-countdown h4 {
        font-size: 1rem;
    }

    .book-launch-timer div {
        font-size: 1.2rem;
        min-width: 70px;
        padding: 10px;
    }

    .book-launch-free-offer p {
        font-size: 0.9rem;
    }

    .book-launch-cta {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* about-us.css */

.about-us-section {
    padding: 30px 10px;
    background-color: #ffffff;
}

.about-us-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-us-content h2 {
    font-size: 2.5em;
    color: var(--success-color);
    margin-bottom: 20px;
}

.about-us-content p {
    font-size: 1.2em;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.about-us-content img {
    width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 404.css */

.error-section {
    padding: 100px 20px;
    text-align: center;
}

.error-image {
    width: 60%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
}

.error-content h1 {
    font-size: 2.5em;
    color: var(--success-color);
    margin-bottom: 20px;
}

.error-content p {
    font-size: 1.2em;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* .cta-button {
    padding: 10px 20px;
    background-color: var(--success-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--text-tale);
} */


.privacy-policy-page {
    padding: 30px 10px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    text-align: justify;
}

.privacy-policy-page h1 {
    font-size: 2.5em;
    color: var(--success-color);
    margin-bottom: 20px;
}

.privacy-policy-page p {
    font-size: 1.2em;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.privacy-policy-page h2 {
    font-size: 2em;
    color: var(--success-color);
    margin-bottom: 20px;
}

.privacy-policy-page ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.privacy-policy-page ul li {
    font-size: 1.1em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.privacy-policy-page ul li strong {
    color: var(--success-color);
}

.privacy-policy-page {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #cbe9e7;
}

@media (max-width: 768px) {
    .privacy-policy-page {
        padding: 10px;
        margin: 5%;
    }

    .privacy-policy-page h1 {
        font-size: 2em;
    }

    .privacy-policy-page p {
        font-size: 1em;
    }

    .privacy-policy-page h2 {
        font-size: 1.5em;
    }

    .privacy-policy-page ul li {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .privacy-policy-page {
        padding: 5px;
        margin: 5%;
    }

    .privacy-policy-page h1 {
        font-size: 1.5em;
    }

    .privacy-policy-page p {
        font-size: 0.8em;
    }

    .privacy-policy-page h2 {
        font-size: 1.2em;
    }

    .privacy-policy-page ul li {
        font-size: 0.8em;
    }
}

.form-image {
    width: 90%;
    object-fit: cover;
    margin-bottom: 20px;
    /* margin-right: 17px; */
    border-radius: 10px;
}

@media (max-width: 768px) {
    .form-image {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .form-image {
        width: 90%;
    }
}

/* Footer Social Media Section Styling */
.footer-social {
    margin-top: 20px;
    /* text-align: center; */
}

.facebook-btn .facebook-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #1877f2;
    /* Facebook's brand color */
    color: #fff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Hover Effect */
.facebook-btn .facebook-cta:hover {
    opacity: 0.8;
}

/* Icon Styling */
.facebook-btn .facebook-cta i {
    margin-right: 10px;
    font-size: 20px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .footer-social {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .footer-social {
        margin-top: 5px;
    }
}

#modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 500px;
    animation: fadeIn 0.5s;
    position: relative;
}

#modal iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.close-btn {
    position: absolute;
    top: -60px;
    right: -40px;
    font-size: 36px;
    cursor: pointer;
    background-color: #ffffff00;
    padding: 5px;
    border-radius: 20%;
}

.close-btn:hover {
    color: #ccc;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Styles */

@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        max-width: 400px;
    }

    #modal iframe {
        height: 600px;
    }

    .close-btn {
        top: -60px;
        right: -10px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        max-width: 300px;
    }

    #modal iframe {
        height: 600px;
    }

    .close-btn {
        top: -60px;
        right: -10px;
        font-size: 30px;
    }
}

@media (max-width: 320px) {
    .modal-content {
        width: 95%;
        max-width: 250px;
    }

    #modal iframe {
        height: 550px;
    }

    .close-btn {
        top: -60px;
        right: -10px;
        font-size: 30px;
    }
}

.terms-of-use-page {
    padding: 30px 10px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    text-align: justify;
}

.terms-of-use-page h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.terms-of-use-page p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.terms-of-use-page a {
    color: var(--success-color)
}

.terms-of-use-page h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
}

.terms-of-use-page ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.terms-of-use-page ul li {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
    list-style-type: disc;
    list-style-position: inside;
}

.terms-of-use-page ul li strong {
    color: #333;
}

.terms-of-use-page {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #cbe9e7;
}

@media (max-width: 768px) {
    .terms-of-use-page {
        padding: 10px;
        margin: 5%;
    }

    .terms-of-use-page h1 {
        font-size: 2em;
    }

    .terms-of-use-page p {
        font-size: 1em;
    }

    .terms-of-use-page h2 {
        font-size: 1.5em;
    }

    .terms-of-use-page ul li {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .terms-of-use-page {
        padding: 5px;
        margin: 5%;
    }

    .terms-of-use-page h1 {
        font-size: 1.5em;
    }

    .terms-of-use-page p {
        font-size: 0.8em;
    }

    .terms-of-use-page h2 {
        font-size: 1.2em;
    }

    .terms-of-use-page ul li {
        font-size: 0.8em;
    }
}


#notificationSubscribeBox {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #cbe9e7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 500px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    color: #000;
    animation: fadeIn 0.5s;
}

#notificationSubscribeBox.show {
    display: block;
    animation: fadeIn 0.5s;
}

#notificationSubscribeBox span.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s;
}

#notificationSubscribeBox span.close-btn:hover {
    transform: rotate(180deg);
    color: var(--success-color);
}

#notificationSubscribeForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 1;
    transition: opacity 0.3s;
}

#notificationSubscribeForm.hidden {
    opacity: 0;
}

#notificationSubscribeBox input[type="email"] {
    padding: 10px;
    width: 100%;
    max-width: 300px;
    border: 1px solid #000;
    border-radius: 5px;
}

#notificationSubscribeBox .cta-button {
    padding: 10px 20px;
    background-color: var(--success-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

#notificationSubscribeBox .cta-button:hover {
    background-color: var(--text-tale);
}

#notificationSubscribeBox .success-message {
    font-size: 18px;
    color: var(--success-color);
    margin-top: 10px;
    animation: fadeIn 0.5s;
    opacity: 0;
    transition: opacity 0.3s;
}

#notificationSubscribeBox .success-message.show {
    opacity: 1;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.overlay.show {
    display: flex;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    #notificationSubscribeBox {
        max-width: 300px;
        width: 70%;
    }

    #notificationSubscribeBox input[type="email"] {
        max-width: 250px;
    }

    #notificationSubscribeBox .cta-button {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    #notificationSubscribeBox {
        max-width: 300px;
        width: 80%;
    }

    #notificationSubscribeBox input[type="email"] {
        max-width: 200px;
    }

    #notificationSubscribeBox .cta-button {
        max-width: 150px;
    }
}

/* Upcoming Book Section */
.books-section-upcoming-book-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 10px;
    text-align: center;

}

.books-section-upcoming-book-section .books-section-section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.books-section-upcoming-book-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.books-section-upcoming-book-image {
    flex: 1 1 280px;
    max-width: 280px;
}

.books-section-upcoming-book-image img {
    width: 100%;
    border-radius: 10px;
    /* box-shadow: 0 4px 6px rgba(0,0,0,0.1); */
}

.books-section-upcoming-book-info {
    /* flex: 2 1 400px; */
    max-width: 400px;
    text-align: left;
}

.books-section-upcoming-book-info .books-section-book-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #444;
}

.books-section-upcoming-book-info .books-section-book-description {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

/* Launched Books Section */
.books-section-launched-books-section {
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.books-section-launched-books-section .books-section-section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.books-section-books-grid-centered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: center;
    gap: 30px;
}

.books-section-book-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 360px;
    margin: 0 auto;
}

.books-section-book-card img.books-section-book-cover {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.books-section-book-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #444;
}

.books-section-book-description {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
    flex-grow: 1;
}

.books-section-cta-button {
    background-color: var(--success-color);
    color: var(--bg-text-color);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.books-section-cta-button:hover {
    background-color: var(--text-tale);
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .books-section-upcoming-book-details {
        flex-direction: column;
        max-width: 95%;
    }

    .books-section-upcoming-book-info {
        max-width: 95%;
        text-align: center;
    }

    .books-section-upcoming-book-info .books-section-book-title {
        font-size: 1.5rem;
    }

    .books-section-launched-books-section {
        padding: 30px 10px;
    }

    .books-section-books-grid-centered {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .books-section-book-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .books-section-lead-capture-form {
        flex-direction: column;
    }

    .books-section-lead-capture-form input[type="text"],
    .books-section-lead-capture-form input[type="email"],
    .books-section-lead-capture-form button.books-section-cta-button {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .books-section-upcoming-book-section {
        padding: 30px 10px;
    }

    .books-section-upcoming-book-info .books-section-book-title {
        font-size: 1.2rem;
    }

    .books-section-upcoming-book-info .books-section-book-description {
        font-size: 0.9rem;
    }

    .books-section-cta-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Styles for books-section-lead-capture-form */
.books-section-lead-capture-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.books-section-lead-capture-form input[type="text"],
.books-section-lead-capture-form input[type="email"] {
    flex: 1 1 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.books-section-lead-capture-form button.books-section-cta-button {
    flex: 0 0 auto;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 6px;
    background-color: var(--success-color);
    color: var(--bg-text-color);
    transition: background-color 0.3s ease;
}

.books-section-lead-capture-form button.books-section-cta-button:hover {
    background-color: var(--text-tale);
}

.books-section-success-message {
    font-size: 1rem;
    margin: 20px 0px;
    color: #155724;
    font-weight: 600;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    animation: fadeInScale 0.5s ease forwards;
    display: none;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: black !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: var(--success-color) !important;
    border-radius: 5px;

}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: var(--success-color);
}

@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: transparent;
        padding-left: 20px;
    }

    .dropdown-content a {
        color: var(--bg-text-color) !important;
        padding: 8px 0;
        text-align: center;
    }

    .dropdown-content a:hover {
        background-color: transparent;
        color: var(--text-color-footer) !important;
    }
}

/* Total Mindset Mastery Page */
.tmm-page {
    background-color: #f4f4f4;
    padding-bottom: 50px;
}

.tmm-intro {
    background: linear-gradient(to right, #cbe9e7, #ffffff);
    padding: 60px 20px;
}

.tmm-intro .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.tmm-intro-content {
    flex: 1;
}

.tmm-intro-content h1 {
    font-size: 3em;
    color: var(--success-color);
    margin-bottom: 10px;
}

.tmm-intro-content .subtitle {
    font-size: 1.5em;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 20px;
}

.tmm-intro-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.author-bio {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 5px solid var(--success-color);
}

.author-bio h3 {
    color: var(--success-color);
    margin-bottom: 10px;
}

.tmm-intro-image {
    flex: 1;
    text-align: center;
}

.tmm-intro-image img {
    max-width: 87%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.tmm-books-list {
    padding: 60px 20px;
}

.tmm-books-list h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--success-color);
    margin-bottom: 40px;
}

.tmm-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.tmm-list-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 4px solid transparent;
}

.tmm-list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--success-color);
}

.tmm-book-number {
    font-size: 1.5em;
    font-weight: bold;
    color: #ccc;
    margin-right: 25px;
    min-width: 30px;
    text-align: right;
}

.tmm-book-cover {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    margin-right: 25px;
    border-radius: 0;
    overflow: hidden;
}

.tmm-book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tmm-book-info {
    flex-grow: 1;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tmm-book-info h3 {
    font-size: 1.2em;
    color: var(--success-color);
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.tmm-book-info .book-subtitle {
    font-size: 0.95em;
    color: #666;
    margin: 0;
    font-weight: normal;
    line-height: 1.4;
}

.tmm-book-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.store-btn:hover {
    opacity: 0.8;
}

.store-btn.google-play {
    background-color: #000;
    color: white;
    border: 1px solid #333;
}

.store-btn.spotify {
    background-color: #1DB954;
    color: white;
}

@media (max-width: 768px) {
    .tmm-intro .container {
        flex-direction: column;
        text-align: center;
    }

    .tmm-intro-content h1 {
        font-size: 2.2em;
    }

    .tmm-list-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        position: relative;
    }

    .tmm-book-number {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 1.2em;
        margin: 0;
    }

    .tmm-book-cover {
        width: 140px;
        height: 140px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .tmm-book-info {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .tmm-book-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Policy Pages Layout */
.policy-page {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

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

.policy-header {
    text-align: center;
    margin-bottom: 50px;
}

.policy-header h1 {
    font-size: 3em;
    color: var(--success-color);
    margin-bottom: 15px;
}

.policy-header p {
    font-size: 1.2em;
    color: #666;
}

.policy-wrapper {
    display: flex;
    gap: 40px;
    position: relative;
}

.policy-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 120px;
    height: fit-content;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2em;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.policy-sidebar ul {
    list-style: none;
    padding: 0;
}

.policy-sidebar li {
    margin-bottom: 12px;
}

.policy-sidebar a {
    color: #555;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
}

.policy-sidebar a:hover {
    color: var(--success-color);
    padding-left: 5px;
}

.policy-content {
    flex: 1;
    min-width: 0;
}

.policy-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    scroll-margin-top: 120px;
}

.policy-section h2 {
    color: var(--success-color);
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.policy-section h3 {
    color: #444;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.policy-section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
    list-style: disc;
}

.policy-note {
    background-color: #f0fdf4;
    border-left: 4px solid var(--success-color);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    font-size: 0.95em;
}

@media (max-width: 900px) {
    .policy-wrapper {
        flex-direction: column;
    }

    .policy-sidebar {
        position: relative;
        top: 0;
        width: 100%;
        flex: none;
        order: -1;
    }


    .policy-header h1 {
        font-size: 2.2em;
    }
}


.highlight-email {
    color: var(--success-color) !important;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .policy-page {
        padding: 30px 15px;
    }

    .policy-section {
        padding: 25px 20px;
    }

    .policy-header h1 {
        font-size: 1.8em;
    }

    .policy-section h2 {
        font-size: 1.5em;
    }
}

/* VIP Perks Mobile Adjustments */
@media (max-width: 768px) {
    .perks-title {
        font-size: 1.2rem;
    }

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

/* Footer Social Icons */
.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    background-color: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    color: white !important;
}

@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }
}

/* Brand Colors on Hover */
.social-icon[href*="facebook.com"]:hover {
    background-color: #1877F2;
}

.social-icon[href*="instagram.com"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon[href*="tiktok.com"]:hover {
    background-color: #000000;
}

.social-icon[href*="youtube.com"]:hover {
    background-color: #FF0000;
}