/* Custom CSS - styles.css */
:root {
    --color-white: #FFFFFF;
    --color-light-yellow: #F0E2AA;
    --color-pink: #EF84A9;
    --color-dark-pink: #E8127F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.header-section {
    background-image: url('Bipolar-small.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.header-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-right: 300px;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.header-title {
    font-weight: 900;
    color: var(--color-white);
    font-size: clamp(2.5rem, 8vw, 6rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    line-height: 1.1;
    max-width: 85%;
}

.header-description {
    font-weight: 400;
    color: var(--color-white);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    max-width: 600px;
}

/* Main Section */
.main-section {
    background: var(--color-light-yellow);
    min-height: 60vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
    position: relative;
}

.content-card {
    background: var(--color-white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.icon-wrapper {
    background: var(--color-pink);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: var(--color-white);
}

.main-title {
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.download-section {
    margin-top: 30px;
}

.download-btn {
    background: var(--color-dark-pink);
    color: var(--color-white);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background: #d10a6e;
}

.download-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Footer Section */
.footer-section {
    background: #f8f9fa;
    color: #333;
    padding: 40px 0;
    text-align: center;
}

.footer-note {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-dark-pink);
}

.disclaimer {
    /* background: #fff; */
    padding: 20px;
    border-radius: 8px;
    /* border: 1px solid #e0e0e0; */
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer p {
    font-size: 0.5rem;
    line-height: 1.5;
    margin: 0;
    color: #666;
}

.disclaimer strong {
    color: #333;
}

/* Responsive Design */
@media (max-width: 360px){
    .header-section {
        background-image: url('Bipolar-small-screen.png');
        height: 400px;
    }
    
    .header-content {
        margin-top: 180px;
        padding-right: 0;
        padding-left: 0;
    }
    
    .header-title {
        max-width: 100%;
        font-size: clamp(1.6rem, 8vw, 4rem);
        letter-spacing: 0.5px;
        line-height: 40px;
        margin-bottom: 0.8rem;
        text-align: center;
        margin-left: 12px;
    }
    
    .header-description {
        max-width: 100%;
        font-size: clamp(0.8rem, 3vw, 1.1rem);
        text-align: center;
    }
    
    .container {
        padding-top: 0;
        padding-bottom: 0;;
        padding-right: 10px;
        padding-left: 10px;
    }
    
    .main-section {
        padding: 30px 0;
        min-height: auto;
    }
    
    .content-card {
        padding: 30px 20px;
        border-radius: 12px;
        margin: 0 10px;
        max-width: 94%;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 2rem;
    }
    
    .main-title {
        font-size: clamp(1rem, 3vw, 1.8rem);
        margin-bottom: 0px;
    }

    .download-section {
        margin-top: 10px;
    }
    
    .download-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .footer-section {
        padding: 30px 0 20px 0;
    }
    
    .footer-note {
        font-size: 0.6rem;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }

    .disclaimer{
        width: 96%;
        border: none;
        padding: 0;
        text-align: justify ;
    }
    
    .disclaimer p {
        font-size: 0.2rem;
    }
}

@media (min-width: 361px) and (max-width: 400px) {
    .header-section {
        background-image: url('Bipolar-mid-screen.png');
        height: 400px;
    }
    .header-content {
        margin-top: 65%;
        padding-right: 0;
        padding-left: 0;
    }
    
    .header-title {
        max-width: 100%;
        font-size: clamp(1.6rem, 8vw, 4rem);
        letter-spacing: 0.5px;
        line-height: 40px;
        margin-bottom: 0.8rem;
        text-align: center;
        margin-left: 12px;
    }
    
    .header-description {
        max-width: 100%;
        font-size: clamp(0.8rem, 3vw, 1.1rem);
        text-align: center;
    }
    
    .container {
        padding-top: 0;
        padding-bottom: 0;;
        padding-right: 10px;
        padding-left: 10px;
    }
    
    .main-section {
        padding: 30px 0;
        min-height: auto;
    }
    
    .content-card {
        padding: 30px 20px;
        border-radius: 12px;
        margin: 0 10px;
        max-width: 94%;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 2rem;
    }
    
    .main-title {
        font-size: clamp(1rem, 3vw, 1.8rem);
        margin-bottom: 0px;
    }

    .download-section {
        margin-top: 10px;
    }
    
    .download-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .footer-section {
        padding: 30px 0 20px 0;
    }
    
    .footer-note {
        font-size: 0.6rem;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }

    .disclaimer{
        width: 96%;
        border: none;
        padding: 0;
        text-align: justify ;
    }
    
    .disclaimer p {
        font-size: 0.3rem;
    }    
}

@media (min-width: 400px) and (max-width: 500px) {
    .header-section {
        background-image: url('Bipolar-mid-screen.png');
        height: 450px;
    }

    .header-content {
        margin-top: 60%;
        padding-right: 0;
        padding-left: 0;
    }
    
    .header-title {
        max-width: 100%;
        font-size: clamp(1.6rem, 8vw, 4rem);
        letter-spacing: 0.5px;
        line-height: 40px;
        margin-bottom: 0.8rem;
        text-align: center;
        margin-left: 12px;
    }
    
    .header-description {
        max-width: 100%;
        font-size: clamp(0.8rem, 3vw, 1.1rem);
        text-align: center;
    }
    
    .container {
        padding-top: 0;
        padding-bottom: 0;;
        padding-right: 10px;
        padding-left: 10px;
    }
    
    .main-section {
        padding: 30px 0;
        min-height: auto;
    }
    
    .content-card {
        padding: 30px 20px;
        border-radius: 12px;
        margin: 0 10px;
        max-width: 94%;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 2rem;
    }
    
    .main-title {
        font-size: clamp(1rem, 3vw, 1.8rem);
        margin-bottom: 0px;
    }

    .download-section {
        margin-top: 10px;
    }
    
    .download-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .footer-section {
        padding: 30px 0 20px 0;
    }
    
    .footer-note {
        font-size: 0.6rem;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }

    .disclaimer{
        width: 96%;
        border: none;
        padding: 0;
        text-align: justify ;
    }
    
    .disclaimer p {
        font-size: 0.3rem;
    }    
}

@media (min-width: 500px) and (max-width: 600px) {
    .header-section {
        background-image: url('Bipolar-mid-screen.png');
        height: 500px;
    }
    .header-content {
        margin-top: 55%;
        padding-right: 0;
        padding-left: 0;
    }
    
    .header-title {
        max-width: 100%;
        font-size: clamp(1.6rem, 8vw, 4rem);
        letter-spacing: 0.5px;
        line-height: 40px;
        margin-bottom: 0.8rem;
        text-align: center;
        margin-left: 12px;
    }
    
    .header-description {
        max-width: 100%;
        font-size: clamp(0.8rem, 3vw, 1.1rem);
        text-align: center;
    }
    
    .container {
        padding-top: 0;
        padding-bottom: 0;;
        padding-right: 10px;
        padding-left: 10px;
    }
    
    .main-section {
        padding: 30px 0;
        min-height: auto;
    }
    
    .content-card {
        padding: 30px 20px;
        border-radius: 12px;
        margin: 0 10px;
        max-width: 94%;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 2rem;
    }
    
    .main-title {
        font-size: clamp(1rem, 3vw, 1.8rem);
        margin-bottom: 0px;
    }

    .download-section {
        margin-top: 10px;
    }
    
    .download-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .footer-section {
        padding: 30px 0 20px 0;
    }
    
    .footer-note {
        font-size: 0.7rem;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }

    .disclaimer{
        width: 96%;
        border: none;
        padding: 0;
        text-align: justify ;
    }
    
    .disclaimer p {
        font-size: 0.3rem;
    }    
}

@media (min-width: 600px) and (max-width: 700px) {
    .header-section {
        background-image: url('Bipolar-mid-screen.png');
        height: 550px;
    }
    .header-content {
        margin-top: 53%;
        padding-right: 0;
        padding-left: 0;
    }
    
    .header-title {
        max-width: 100%;
        font-size: clamp(1.6rem, 8vw, 4rem);
        letter-spacing: 0.5px;
        line-height: 40px;
        margin-bottom: 0.8rem;
        text-align: center;
        margin-left: 12px;
    }
    
    .header-description {
        max-width: 100%;
        font-size: clamp(0.8rem, 3vw, 1.1rem);
        text-align: center;
    }
    
    .container {
        padding-top: 0;
        padding-bottom: 0;;
        padding-right: 10px;
        padding-left: 10px;
    }
    
    .main-section {
        padding: 30px 0;
        min-height: auto;
    }
    
    .content-card {
        padding: 30px 20px;
        border-radius: 12px;
        margin: 0 10px;
        max-width: 94%;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 2rem;
    }
    
    .main-title {
        font-size: clamp(1rem, 3vw, 1.8rem);
        margin-bottom: 0px;
    }

    .download-section {
        margin-top: 10px;
    }
    
    .download-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .footer-section {
        padding: 30px 0 20px 0;
    }
    
    .footer-note {
        font-size: 0.7rem;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }

    .disclaimer{
        width: 96%;
        border: none;
        padding: 0;
        text-align: justify ;
    }
    
    .disclaimer p {
        font-size: 0.3rem;
    }    
}

@media (min-width: 700px) and (max-width: 800px) {
    .header-section {
        background-image: url('Bipolar-mid-screen.png');
        height: 600px;
    }
    .header-content {
        margin-top: 50%;
        padding-right: 0;
        padding-left: 0;
    }
    
    .header-title {
        max-width: 100%;
        font-size: clamp(1.6rem, 8vw, 4rem);
        letter-spacing: 0.5px;
        line-height: 40px;
        margin-bottom: 0.8rem;
        text-align: center;
        margin-left: 12px;
    }
    
    .header-description {
        max-width: 100%;
        font-size: clamp(0.8rem, 3vw, 1.1rem);
        text-align: center;
    }
    
    .container {
        padding-top: 0;
        padding-bottom: 0;;
        padding-right: 10px;
        padding-left: 10px;
    }
    
    .main-section {
        padding: 30px 0;
        min-height: auto;
    }
    
    .content-card {
        padding: 30px 20px;
        border-radius: 12px;
        margin: 0 10px;
        max-width: 94%;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 2rem;
    }
    
    .main-title {
        font-size: clamp(1rem, 3vw, 1.8rem);
        margin-bottom: 0px;
    }

    .download-section {
        margin-top: 10px;
    }
    
    .download-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .footer-section {
        padding: 30px 0 20px 0;
    }
    
    .footer-note {
        font-size: 0.8rem;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }

    .disclaimer{
        width: 96%;
        border: none;
        padding: 0;
        text-align: justify ;
    }
    
    .disclaimer p {
        font-size: 0.3rem;
    }    
}