/* ===== GENERAL ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, sans-serif;
    line-height:1.6;
    color:#333;
}

/* ===== CONTAINER ===== */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===== HEADER ===== */
header{
    background:#ffffff;
    padding:15px 0;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

.logo img{
    height:60px;
}

.hero{
    background-image:url('../images/hero-banner.jpg');
    background-size:cover;
    background-position:center 15%;
    background-repeat:no-repeat;
    min-height:580px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:5px;
}
.hero-content{
    background:rgba(0,0,0,0.25);
    padding:22px;
    border-radius:15px;
    transform:translateY(-100px);
    text-align:center;
    max-width:520px;
    margin-left:50px;
}

/* ===== BUTTON ===== */
.btn{
    display:inline-block;
    background:#f7941d;
    box-shadow:0 4px 15px rgba(0,0,0,0.3);
    transition:0.3s;
    color:#fff;
    padding:15px 35px;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
    margin-top:-10px;
}

.btn:hover{
    background:#e57c00;
    transform:translateY(-3px);
}

@media (max-width:768px){
    .hero{
        min-height:500px;
        background-position:center center;
    }

    .hero h1{
        font-size:36px;
    }

    .hero h2{
        font-size:22px;
    }

    .hero p{
        font-size:18px;
    }

    .hero-content{
        width:90%;
        max-width:500px;
        padding:20px;
    }

.btn{
    padding:12px 25px;
    font-size:18px;
    margin-top:-10px;
}
}

/* ===== ABOUT MEPICON ===== */

.about-mepicon{
    padding:80px 20px;
    background:#f8f9fa;
}

.about-mepicon h2{
    text-align:center;
    font-size:40px;
    color:#003366;
    margin-bottom:20px;
}

.about-mepicon h3{
    text-align:center;
    color:#ff7a00;
    margin-bottom:30px;
}

.about-mepicon p{
    font-size:20px;
    line-height:1.8;
    text-align:center;
    margin-bottom:20px;
}

.about-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:30px;
    margin-top:50px;
}

.about-box{
    background:#ffffff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.about-box img{
    width:70px;
    margin-bottom:20px;
}

.about-box h4{
    color:#003366;
    margin-bottom:15px;
}

.mission-box{
    background:#003366;
    color:#ffffff;
    padding:40px;
    border-radius:15px;
    margin-top:50px;
    text-align:center;
}

.mission-box h3{
    color:#ffffff;
}

@media (max-width:768px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-mepicon h2{
        font-size:30px;
    }

    .about-mepicon p{
        font-size:18px;
    }

}

/* ===== SECTION-2 SOLAR CAREER ===== */

.solar-career{
padding:80px 20px;
background:#f7f9fc;
text-align:center;
}

.solar-career h2{
font-size:48px;
color:#003366;
margin-bottom:20px;
}

.career-intro{
font-size:22px;
max-width:900px;
margin:auto;
margin-bottom:50px;
line-height:1.8;
}

.career-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
margin-top:50px;
}

.career-card{
background:#ffffff;
width:31%;
min-width:300px;
padding:35px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,0.10);
text-align:center;
transition:0.3s;
}

.career-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.career-card h3{
color:#003366;
margin-bottom:20px;
font-size:28px;
}

.career-card p{
font-size:22px;
line-height:1.7;
}

.career-message{
margin-top:60px;
background:#003366;
color:#ffffff;
padding:50px;
border-radius:20px;
}

.career-message h3{
font-size:32px;
margin-bottom:20px;
color:#ffffff;
}

.career-message p{
font-size:24px;
margin-bottom:35px;
}

.career-btn{
background:#ff9800;
color:#ffffff;

padding:18px 40px;
text-decoration:none;
border-radius:8px;
font-size:22px;
font-weight:bold;
display:inline-block;
}

.career-btn:hover{
background:#e57c00;
}

/* MOBILE */

@media (max-width:768px){

.career-grid{
flex-direction:column;
align-items:center;
}

.career-card{
width:100%;
min-width:auto;
}

.solar-career h2{
font-size:34px;
}

.career-intro{
font-size:18px;
}

.career-card h3{
font-size:24px;
}

.career-message h3{
font-size:26px;
}

.career-message p{
font-size:20px;
}

}

/* ===== SECTION-3 SOLAR TRAINING COURSES ===== */

.training-section{
padding:80px 20px;
background:#f7f9fc;
text-align:center;
}

.training-section h2{
font-size:48px;
color:#003366;
margin-bottom:20px;
}

.training-intro{
font-size:22px;
max-width:900px;
margin:auto;
margin-bottom:50px;
line-height:1.8;
}

.training-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}

.training-card{
    background:#ffffff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.10);
    width:320px;
    text-align:center;
    transition:0.3s;
    display:flex;
    flex-direction:column;
    justify-content:space-between;

}

.course-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 25px;
    background:#ff9900;
    color:#ffffff;
    text-decoration:none;
    border-radius:10px;
    font-weight:bold;
}

.course-btn:hover{
    background:#e57c00;
}

.training-card h3{
    font-size:22px;
    line-height:1.4;
    min-height:90px;
    color:#003366;
    margin-bottom:20px;
}

.training-card p{
font-size:20px;
line-height:1.8;
margin-bottom:10px;
}

.course-btn{
display:inline-block;
margin-top:25px;
padding:15px 35px;
background:#ff9900;
color:#ffffff;
text-decoration:none;
border-radius:10px;
font-size:20px;
font-weight:bold;
}

.course-btn:hover{
background:#e57c00;
}

@media (max-width:768px){

.training-grid{
    flex-direction:column;
    align-items:center;
}

.training-card{
    width:90%;
}

.training-section h2{
font-size:34px;
}

.training-intro{
font-size:18px;
}
}

/* ===== SECTION-4 REGISTRATION ===== */

.registration-section{
padding:80px 20px;
background:#f7f9fc;
text-align:center;
}

.registration-section h2{
font-size:48px;
color:#003366;
margin-bottom:20px;
}

.registration-intro{
font-size:22px;
margin-bottom:50px;
}

.registration-form{
max-width:850px;
width:100%;
margin:auto;
background:#ffffff;
padding:40px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
display:flex;
flex-direction:column;
gap:20px;
box-sizing:border-box;
}

.registration-form input,
.registration-form select{
padding:18px;
font-size:18px;
border:1px solid #cccccc;
border-radius:10px;
}

.mobile-row{
display:flex;
gap:15px;
}

.mobile-row input{
flex:1;
}

.otp-btn{
background:#ff9900;
color:white;
border:none;
padding:15px 30px;
border-radius:10px;
font-size:18px;
cursor:pointer;
}

.register-btn{
background:#003366;
color:white;
border:none;
padding:18px;
font-size:22px;
border-radius:12px;
cursor:pointer;
}

.register-btn:hover{
background:#0055aa;
}

.agree-box{
text-align:left;
font-size:18px;
}
.privacy-note{
font-size:15px;
color:#666;
text-align:center;
margin-top:15px;
line-height:1.6;
}
@media(max-width:768px){

.registration-section h2{
font-size:34px;
}

.mobile-row{
flex-direction:column;
}

.registration-form{
padding:25px;
}

}

/* ===== SECTION-5 VIDEO GALLERY ===== */

.video-section{
padding:80px 20px;
background:#ffffff;
text-align:center;
}

.video-section h2{
font-size:48px;
color:#003366;
margin-bottom:20px;
}

.video-intro{
font-size:22px;
max-width:900px;
margin:auto;
margin-bottom:50px;
line-height:1.8;
}

.video-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;
max-width:1300px;
margin:auto;
}

.video-card{
background:#f7f9fc;
padding:25px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,0.10);
transition:0.3s;
}

.video-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(0,0,0,0.20);
}

.video-card video{
width:100%;
height:250px;
object-fit:cover;
border-radius:15px;
background:#000;
}

.video-card iframe{
width:100%;
height:250px;
display:block;
border:none;
border-radius:15px;
}

.video-card h3{
font-size:30px;
color:#003366;
margin-top:20px;
margin-bottom:15px;
}

.video-card p{
    
font-size:20px;
line-height:1.7;
}

@media(max-width:768px){

.video-section h2{
font-size:34px;
}

.video-intro{
font-size:18px;
}

.video-card h3{
font-size:24px;
}

.video-card p{
font-size:18px;
}
.video-card video,
.video-card iframe{
height:220px;
}

}
/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section{
    padding-top:0;
    padding-right:20px;
    padding-bottom:30px;
    padding-left:20px;
    background:#f7f9fc;
    text-align:center;
}

.testimonial-section h2{
font-size:48px;
color:#003366;
margin-bottom:20px;
}

.testimonial-intro{
font-size:22px;
max-width:900px;
margin:auto;
margin-bottom:20px;
line-height:1.8;
}

.testimonial-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:35px;
max-width:1500px;
margin:auto;
}

.testimonial-card{
background:#ffffff;
padding:30px;
width:300px;
border-radius:25px;
box-shadow:0 8px 25px rgba(0,0,0,0.12);
transition:0.3s;
text-align:center;
overflow:hidden;
}

.testimonial-card:hover{
transform:translateY(-10px);
}

.testimonial-card img{
width:140px;
height:140px;
border-radius:50%;
object-fit:cover;
border:5px solid #ff9900;
margin-bottom:20px;
}

.testimonial-card h3{
font-size:30px;
color:#003366;
margin-bottom:10px;
}

.location{
color:#666;
font-size:18px;
margin-bottom:15px;
}

.stars{
font-size:28px;
margin-bottom:20px;
}

.testimonial-card p{
font-size:19px;
line-height:1.8;
}

.verified{
display:inline-block;
margin-top:20px;
background:#e8fff1;
color:#008000;
padding:10px 20px;
border-radius:50px;
font-weight:bold;
}

/* Tablet */

@media(max-width:1200px){

.testimonial-card{
width:45%;
}

}

/* Mobile */

@media(max-width:768px){

.testimonial-card{
width:100%;
}

.testimonial-section h2{
font-size:34px;
}

.testimonial-card h3{
font-size:26px;
}

}
/* ===== MEPICON ACHIEVEMENTS SECTION ===== */

.achievement-section{
padding:80px 20px;
background:#ffffff;
text-align:center;
}

.achievement-section h2{
font-size:46px;
color:#003366;
margin-bottom:50px;
}

.achievement-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:35px;
    max-width:950px;
    margin:auto;
}

.achievement-card{
    background:#f7f9fc;
    padding:35px;
    width:290px;
    min-height:360px;
    border-radius:25px;
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
    transition:0.3s;
}

.achievement-card:hover{
    transform:translateY(-10px);
}

.achievement-icon{
font-size:55px;
margin-bottom:20px;
}

.achievement-card h3{
font-size:28px;
color:#003366;
margin-bottom:20px;
}

.achievement-card p{
font-size:18px;
line-height:1.7;
color:#444;
}

/* Tablet */
@media(max-width:1200px){
.achievement-card{
width:45%;
}
}

/* Mobile */
@media(max-width:768px){
.achievement-card{
width:100%;
}

.achievement-section h2{
font-size:34px;
}

.achievement-card h3{
font-size:24px;
}
}
/* ===== GOVERNMENT TRUST BADGE ===== */

.govt-badge{
    max-width:1000px;
    margin:50px auto 0;
    background:#e8f7ec;
    color:#006400;
    padding:20px 30px;
    border-radius:20px;
    border:2px solid #cce8d0;
    font-size:22px;
    font-weight:bold;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.10);
    line-height:1.6;
}

/* Mobile */
@media(max-width:768px){
    .govt-badge{
        font-size:18px;
        padding:18px;
    }
}
/* ===== SOLAR CAREER OPPORTUNITIES SECTION ===== */

.career-section{
    padding:80px 20px;
    background:#f7f9fc;
    text-align:center;
}

.career-section h2{
    font-size:48px;
    color:#003366;
    margin-bottom:20px;
}

.career-intro{
    font-size:26px;
    max-width:900px;
    margin:auto;
    margin-bottom:50px;
    line-height:1.8;
}

.career-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:35px;
    max-width:1100px;
    margin:auto;
}

.career-card{
    background:#ffffff;
    padding:35px;
    width:300px;
    border-radius:25px;
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
    transition:0.3s;
}

.career-card:hover{
    transform:translateY(-10px);
}

.career-icon{
    font-size:55px;
    margin-bottom:20px;
}

.career-card h3{
    font-size:30px;
    color:#003366;
    margin-bottom:20px;
}

.career-card p{
    font-size:19px;
    line-height:1.8;
    color:#444;
}

.career-cta{
    margin-top:60px;
    background:#e8f7ec;
    color:#006400;
    font-size:28px;
    font-weight:bold;
    padding:30px;
    border-radius:25px;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

/* Tablet */

@media(max-width:1200px){

    .career-card{
        width:45%;
    }
}

/* Mobile */

@media(max-width:768px){

    .career-card{
        width:100%;
    }

    .career-section h2{
        font-size:34px;
    }

    .career-card h3{
        font-size:26px;
    }

    .career-cta{
        font-size:22px;
        padding:20px;
    }
}

/* ===== FREE TRAINING PROGRAM SECTION ===== */

.training-section{
    padding:80px 20px;
    background:#ffffff;
    text-align:center;
}

.training-section h2{
    font-size:48px;
    color:#003366;
    margin-bottom:20px;
}

.training-intro{
    font-size:26px;
    max-width:950px;
    margin:auto;
    margin-bottom:50px;
    line-height:1.8;
    color:#444;
}

.training-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:35px;
    max-width:1100px;
    margin:auto;
}

.training-card{
    background:#f7f9fc;
    width:300px;
    min-height:360px;
    padding:35px;
    border-radius:25px;
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
    transition:0.3s;
}

.training-card:hover{
    transform:translateY(-10px);
}

.training-icon{
    font-size:55px;
    margin-bottom:20px;
}

.training-card h3{
    font-size:30px;
    color:#003366;
    margin-bottom:25px;
}

.training-card p{
    font-size:19px;
    line-height:1.8;
    color:#444;
}

.training-cta{
    margin-top:60px;
    background:#e8f7ec;
    color:#006400;
    font-size:24px;
    font-weight:bold;
    line-height:1.6;
    padding:30px;
    border-radius:25px;
    max-width:1000px;
    margin-left:auto;
    margin-right:auto;
    box-shadow:0 5px 20px rgba(0,0,0,0.10);
}

/* Tablet */
@media(max-width:1200px){
    .training-card{
        width:45%;
    }
}

.stat-icon{
    font-size:42px;
    margin-bottom:15px;
    display:block;
}

/* Mobile */
@media(max-width:768px){

    .training-card{
        width:100%;
    }

    .training-section h2{
        font-size:34px;
    }

    .training-card h3{
        font-size:26px;
    }

    .training-cta{
        font-size:22px;
        padding:20px;
    }
}

/* ===== WHY JOIN MY SOLAR INDIA ===== */

.join-section{
    padding:80px 20px;
    background:#f7f9fc;
    text-align:center;
}

.join-section h2{
    font-size:48px;
    color:#003366;
    margin-bottom:20px;
}

.join-intro{
    font-size:26px;
    max-width:950px;
    margin:auto;
    margin-bottom:50px;
    line-height:1.8;
    color:#444;
}

.join-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:35px;
    max-width:1100px;
    margin:auto;
}

.join-card{
    background:#ffffff;
    width:300px;
    padding:35px;
    border-radius:25px;
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
    transition:0.3s;
}

.join-card:hover{
    transform:translateY(-10px);
}

.join-icon{
    font-size:55px;
    margin-bottom:20px;
}

.join-card h3{
    font-size:30px;
    color:#003366;
    margin-bottom:25px;
}

.join-card p{
    font-size:19px;
    line-height:1.8;
    color:#444;
}

.join-cta{
    margin-top:60px;
    background:#e8f7ec;
    color:#006400;
    font-size:22px;
    font-weight:bold;
    padding:30px;
    border-radius:25px;
    max-width:1000px;
    margin-left:auto;
    margin-right:auto;
    box-shadow:0 5px 20px rgba(0,0,0,0.10);
}

/* Tablet */
@media(max-width:1200px){

    .join-card{
        width:45%;
    }
}

/* Mobile */
@media(max-width:768px){

    .join-card{
        width:100%;
    }

    .join-section h2{
        font-size:34px;
    }

    .join-card h3{
        font-size:26px;
    }

    .join-cta{
        font-size:22px;
        padding:20px;
    }
}

/* ===== FREE REGISTRATION FORM ===== */

.registration-section{
    padding:80px 20px;
    background:#ffffff;
    text-align:center;
}

.registration-section h2{
    font-size:44px;
    color:#003366;
    margin-bottom:20px;
}

.registration-intro{
    font-size:26px;
    max-width:950px;
    margin:auto;
    margin-bottom:50px;
    line-height:1.8;
    color:#444;
}

.registration-form{
    max-width:850px;
    margin:auto;
    background:#f7f9fc;
    padding:45px;
    border-radius:25px;
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
    text-align:left;
}

.form-group{
    margin-bottom:25px;
}

.form-group label{
    display:block;
    font-size:20px;
    font-weight:bold;
    margin-bottom:10px;
    color:#003366;
}

.form-group input,
.form-group select{
    width:100%;
    padding:16px;
    border:1px solid #dcdcdc;
    border-radius:12px;
    font-size:18px;
    box-sizing:border-box;
}

.form-group input:focus,
.form-group select:focus{
    border-color:#007bff;
    outline:none;
}

.register-btn{
    width:100%;
    padding:20px;
    background:linear-gradient(90deg,#00a651,#008000);
    color:#ffffff;
    border:none;
    border-radius:15px;
    font-size:26px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.register-btn:hover{
    background:#006400;
}

.privacy-note{
    text-align:center;
    margin-top:20px;
    color:#777;
    font-size:15px;
    line-height:1.6;
}

/* Mobile Registration Form */
@media(max-width:768px){

.registration-section h2{
    font-size:34px;
}

.registration-intro{
    font-size:20px;
}

.registration-form{
    padding:25px;
}

.register-btn{
    font-size:22px;
}
}

/* ===== TESTIMONIAL UPGRADE ===== */

.testimonial-subtitle{
font-size:26px;
color:#555;
margin-top:10px;
margin-bottom:40px;
}
.achievement-heading{
    text-align:center;
    padding:30px 20px 15px;
}

.achievement-heading h2{
    font-size:48px;
    color:#003366;
    margin-bottom:20px;
}

.achievement-subtitle{
    font-size:26px;
    color:#008000;
    font-weight:bold;
    margin-bottom:20px;
}

.achievement-intro{
    max-width:900px;
    margin:auto;
    font-size:24px;
    line-height:1.7;
    color:#444;
    margin-bottom:15px;
}
/* Statistics */

.testimonial-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    max-width:1200px;
    margin:0 auto 50px;
    padding-top:0;
}

.stat-box{
    background:linear-gradient(180deg,#ffffff,#f8fbff);
    padding:40px 20px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.4s;
    border-top:5px solid #ff9800;
}
.stat-box:hover{
   transform:translateY(-12px) scale(1.02);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    border-top:5px solid #008000;
}

.stat-icon{
    font-size:50px;
    margin-bottom:20px;
}

.stat-box h3{
    font-size:42px;
    color:#008000;
    margin-bottom:10px;
}

.stat-box p{
font-size:22px;
color:#555;
}

/* Testimonial Text */

.testimonial-text{
font-size:22px;
line-height:1.7;
}

/* Participant Tag */

.participant-tag{
font-size:18px;
color:#666;
margin-top:15px;
font-weight:600;
}

/* CTA */

.testimonial-cta{
max-width:900px;
margin:70px auto;
background:#eaf8ec;
padding:45px;
border-radius:25px;
text-align:center;
}

.testimonial-cta h3{
font-size:36px;
color:#003366;
margin-bottom:20px;
}

.testimonial-cta p{
font-size:24px;
margin-bottom:35px;
color:#444;
}

.cta-btn{
display:inline-block;
background:#008000;
color:#ffffff;
padding:18px 40px;
border-radius:50px;
font-size:24px;
text-decoration:none;
font-weight:bold;
}

.cta-btn:hover{
background:#006400;
}
.trust-line{
    color:#008000;
    font-size:24px;
    font-weight:bold;
    margin-top:20px;
    margin-bottom:30px;
}

.achievement-heading{
    text-align:center;
    padding:50px 20px 10px;
}

.achievement-heading h2{
    font-size:48px;
    color:#003366;
    margin-bottom:20px;
}

.achievement-subtitle{
    font-size:30px;
    color:#008000;
    font-weight:bold;
    margin-bottom:20px;
}

.achievement-intro{
    max-width:900px;
    margin:auto;
    font-size:24px;
    line-height:1.7;
    color:#444;
}
/* Mobile */

@media (max-width:768px){

    .testimonial-stats{
        margin-top:15px;
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .stat-icon{
        font-size:32px;
    }

    .registration-note{
        font-size:15px;
        line-height:1.6;
        margin-top:20px;
        padding:0 10px;
    }

}

.achievement-heading h2{
    font-size:34px;
}

.achievement-subtitle{
    font-size:22px;
}

.achievement-intro{
    font-size:18px;
}

.stat-box h3{
font-size:32px;
}

.stat-box p{
font-size:18px;
}

.testimonial-cta h3{
font-size:28px;
}

.testimonial-cta p{
font-size:20px;
}

.cta-btn{
font-size:20px;
padding:15px 30px;
}

}

.card-icon,
.stat-icon,
.achievement-icon{
    transition:0.4s;
}

.card:hover .card-icon,
.stat-box:hover .stat-icon,
.achievement-card:hover .achievement-icon{
    transform:scale(1.15);
}

/* Agreement Checkbox */
.agree-box{
    display:block;
    font-size:16px;
    line-height:1.7;
    color:#333;
    margin-top:20px;
    margin-bottom:20px;
}

.agree-box input[type="checkbox"]{
    margin-right:8px;
}

.registration-note{
    text-align:center;
    color:#0b5ed7;
    font-size:16px;
    font-weight:600;
    margin-top:25px;
    margin-bottom:20px;
}

/* Privacy Note */
.privacy-note{
    text-align:center;
    color:#666;
    font-size:14px;
    line-height:1.7;
    margin-top:25px;
}