*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
   margin: 0;
   padding: 0;
   font-family: "Google Sans", sans-serif;
   scroll-behavior: smooth;
}



.privacy-notice-container{
    width: 100%;
    display: flex;
   justify-content: center;
}

.privacy-notice{
    width: 70%;
    background: white;
    border-left:5px solid lightgreen;
    padding:25px;
    border-radius:12px;
    margin-bottom:30px;
    margin-top: 20px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}


.privacy-notice h3{

    color: purple;
    margin-bottom:10px;

}


.privacy-notice p{

    line-height:1.7;
    margin-bottom:20px;

}


.privacy-btn{

    display:inline-block;
    background:purple;
    color:white;
    padding:10px 30px;
    border-radius:50px;
    text-decoration:none;
    margin-bottom:20px;
    transition:.3s;

}


.privacy-btn:hover{

    background:lightgreen;
    color: white;

}


.privacy-check{

    display:flex;
    align-items:center;
    gap:10px;
    margin-top:15px;
    color:#333;

}


.privacy-check input{

    width:auto;

}

.application-container{

    max-width:900px;
    margin:50px auto;
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);

}

.application-header{

    text-align:center;
    margin-bottom:40px;

}

.application-header h1{

    color:purple;
    margin-bottom:15px;

}

.application-header p{

    color:#555;
    line-height:1.8;
    font-size: 16px;
}

h2{

    color: purple;
    font-size: 20px;
    margin:30px 0 20px;

}

.form-group{

    display:flex;
    flex-direction:column;
    margin-bottom:20px;

}

.form-row{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;

}

label{

    margin-bottom:8px;
    color: purple;

}

input,
select{

    padding:12px;
    border:1px solid gray;
    border-radius:50px;
    font-size:16px;

}

textarea{
    padding:12px;
    border:1px solid gray;
    border-radius:5px;
    font-size:16px;
    resize: none;

}

hr{

    margin:30px 0;
    border:0;
    border-top:1px solid gray;

}

.submit-btn{

    background:purple;
    color:white;
    border:none;
    padding:10px 30px;
    border-radius:50px;
    font-size:16px;
    cursor:pointer;
    transition: 1s;

}

.submit-btn:hover{

    background:lightgreen;
    color: white;

}


.submit-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
    opacity: 0.7;
}




@media screen and (max-width: 768px){

    .header{
        width: 100%;
    }
  
 .left-section{
        width: 200px;
        padding-left: 10px;
        padding-right: 10px;
        flex-shrink: 0;
        border: none;
    }

    .brand-name{
    font-size: 26px;
    margin-bottom: 10px;
}

.brand-slogan{
    font-size: 16px;
    margin-bottom: 10px;
    
}

.brand-tagline{
   font-size: 12px;
}



 .middle-section{
        border: none;
        flex: 1;
        flex-shrink: 0;
        justify-content: center;
        align-items: center;
        position: relative;
        border: none;
    }

    .middle-section .navbar-menu{
        display: none;
    }



    .right-section{
        width: 150px;
        flex-shrink: 0;
        border: none;
    }

    .donate-button{
        width: auto;
        padding: 10px 18px;
        margin-left: 0;
        font-size: 16px;
    }

.heart-icon{
    display: none;
}




    .navbar-toggle{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu{
        position:fixed;
        top:155px;
        left:50%;
        transform:translateX(100%);
        width:60%;
        background: lightgreen;
        display:flex;
        flex-direction:column;
        align-items:center;
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transition: 1.5s ease;
        z-index:999;
    }

    .mobile-menu.show{
        transform:translateX(-50%);
        opacity:1;
        visibility:visible;
        pointer-events:auto;
    }

    .mobile-menu ul{
        list-style:none;
        width:100%;
        padding:0;
        margin:0;
        text-align:center;
    }

    .mobile-menu ul li{
        margin:20px 0;
    }

    .mobile-menu ul li a{
        text-decoration:none;
        color:purple;
        font-size:16px;
        font-weight: bold;
        transition: 1s;
    }

    .mobile-menu ul li a:hover{
        background:purple;
        color:white;
        padding:5px 30px;
    }



    
.mobile-dropdown-menu{
    display: none;
    list-style: none;
    padding-top: 10px;
    margin-top: 10px;
}

.mobile-dropdown-menu.show{
    display: block;
}

.mobile-dropdown-menu li{
    margin: 10px 0;
}

.mobile-dropdown-menu li a{
    display: block;
    color: purple;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
}



.form-row{

grid-template-columns:1fr;

}

.application-container{

margin:20px;
padding:25px;

}

.privacy-notice{
    width: 95%;

}

.contact-info-container{
    flex-direction: column;
    align-items: center;
}

.contact-info-container-content{
    width: 100%;
    max-width: 300px;
}

.contact-form-container-right {
 display: none;
}

.contact-form-container-left{
    width: 100%;
    border-bottom-right-radius: 10px;
}


.footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
}

.footer-column p,
.footer-text {
    text-align: center;
}

.footer-logo {
    margin: 0 auto;
}

.social-icons {
    justify-content: center;
}

.footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.privacy-notice{
    width: 95%;
    
}


}




@media (min-width:769px) and (max-width:1090px){

.privacy-notice{
    width: 90%;
    
}
}