@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
	font-family: var(--navfont-font);
}


html,
body {
	width: 100%;
	height: 100vh;
}

:root {
	--primary-color: #ed1354;
	--secondary-color: #f7f5dd;
	--lightblack-color: #3d3c3c;
	--shadow-color: rgba(0, 0, 0, 0.30);
	--accent-pink: #fff4f4;
	--sky-blue: #92dce5;
	--lemon-yellow: #fce77d;
	--leaf-green: #7ed957;
	--soft-orange: #ffb347;
	--text-dark: #295b99ff;
	--text-light: #e4e4e4;
	--text-black: #151515;
	--pinkc: #fff4f4;

	--navfont-font: "Poppins", sans-serif;
	--secondary-font: "Roboto", sans-serif;
	--primary-text: #021832;
	--secondary-text: #caaa19;
	--text-white: #fff;
	--text-gray: #e4e4e4;
}

/*Text Size Classes */
.headingsize {
	font-size: 2rem;
}

.subheadingsize {
	font-size: 1.5rem;
}

.paratextsize {
	font-size: 20px;
}

.subparatextsize {
	font-size: 1.2rem;
}

/* Font Weight */
.fw-2 {
	font-weight: 600;
}


/* Color Classes */
.primarycolor {
	color: var(--primary-color);
}

.primarytext {
	color: var(--primary-text);
}

.lightblack {
	color: var(--lightblack-color);
}

/* Text Justify */
.textjustify {
	text-align: justify;
}

.privacy-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.privacy-header {
	background: #F7F5DD;
	padding: 60px 0;
	margin-bottom: 20px;
	border-radius: 0 0 20px 20px;
}

.privacy-header h1 {
	color: var(--primary-color);
	font-size: 2.5rem;
	margin-bottom: 10px;
}

.privacy-header .container > p{
    font-size: 18px;
	color: rgb(27, 27, 27);
}

.privacy-content {
	border-radius: 15px;
	/* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
	padding: 40px;
    padding-bottom: 0%;
	margin-bottom: 10px;
}

.privacy-content * p {
	color: var(--text-color);
}

.privacy-content .policy-section p a {
	color: var(--primary-color);
}

.privacy-content * li {
	color: var(--text-color);
}

.policy-section {
	margin-bottom: 35px;
	padding-bottom: 25px;
	border-bottom: 1px solid #eee;
}

.policy-section:last-child {
	border-bottom: none;
}

.policy-section h3 {
	color: var(--primary-color);
	margin-bottom: 20px;
	padding-bottom: 10px;
	display: inline-block;
    position: relative;
}
.policy-section h3::after{
    content: "";
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    bottom:7px;
    left:2px;
    border-radius: 3px;
}

.contact-info {
            border-radius: 15px;
            padding: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 15px;
            border-radius: 12px;
            background: #F7F5DD ;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(78, 84, 200, 0.15);
        }
        
        .contact-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
            background: linear-gradient(135deg, #ed1354 0%, #f52160 100%);
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(78, 84, 200, 0.2);
        }
        
        .contact-icon i {
            color: white;
            font-size: 28px;
        }
        
        .contact-details {
            flex: 1;
        }
        
        .contact-details strong {
            color: var(--primary-color);
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .contact-details p, .contact-details p a {
            margin-bottom: 0;
            color: #555 !important;
            font-size: 1.05rem;
            text-decoration: none;
        }
        
        .contact-details a:hover {
            color: #4e54c8;
            text-decoration: underline;
        }
        
        .school-name {
            font-size: 1.4rem;
            color:var(--primary-color);
            font-weight: 700;
        }


.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: var(--primary-text);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: all 0.3s;
}

.back-to-top:hover {
	transform: translateY(-5px);
	background: var(--primary-text);
	opacity: 0.9;
}


/* Responsive CSS */
@media only screen and (max-width: 600px) {
	.privacy-container {
		padding: 10px;
	}

	.privacy-header {
		background: #F7F5DD;
		color: var(--primary-color);
		padding: 15px 10
        px;
		margin-bottom: 0px;
		border-radius: 0 0 20px 20px;
	}

	.privacy-header h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .privacy-header .container > p{
        font-size: 14px;
        color: rgb(27, 27, 27);
    }
	.privacy-content {
		border-radius: 0px;
		padding: 25px 15px;

	}

	.privacy-content * p {
		color: var(--text-color);
	}

	.privacy-content .policy-section p a {
		color: var(--primary-color);
	}

	.privacy-content * li {
		color: var(--text-color);
	}

	.policy-section {
		margin-bottom: 15px;
		padding-bottom: 10px;
	}

	.policy-section:last-child {
		border-bottom: none;
	}
    .policy-section h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }
    .policy-section h3::after{
        bottom:5px;
    }

    .policy-section > p{
        font-size: 14px;
        padding: 0px 10px;
    }
    .contact-info {
        padding: 15px;
    } 
    .content-item {
        padding: 15px !important;
    }
    .school-name{
        font-size: 1.1rem;
    }
    .contact-details strong {
            font-size: 0.9rem;
        }
    .contact-icon{
        height: 40px;
        width: 40px;
    }
     .contact-details p, .contact-details p a {
            font-size: 0.89rem;
         
        }
    .contact-icon i{
        font-size: 18px;
    }

	.back-to-top {
		position: fixed;
		bottom: 30px;
		right: 30px;
		background: var(--primary-text);
		color: white;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
		transition: all 0.3s;
	}

	.back-to-top:hover {
		transform: translateY(-5px);
		background: var(--secondary-color);
	}

	/* Heading Subheading and Paratext */
	.headingsize {
		font-size: 1.4rem;
	}

	.subheadingsize {
		font-size: 1rem;
	}

	.paratextsize {
		font-size: 0.8rem;
	}

	.subparatextsize {
		font-size: 0.5rem;
	}

	/* Font Weight */
	.fw-2 {
		font-weight: 600;
	}

    .policy-section{
        margin-bottom: 20px;
        padding-bottom: 15px;
        }
    .contact-item {
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 601px) and (max-width: 768px) {
    /* Text Size Classes */
	.headingsize {
		font-size: 1.4rem;
	}

	.subheadingsize {
		font-size: 1rem;
	}

	.paratextsize {
		font-size: 0.8rem;
	}

	.subparatextsize {
		font-size: 0.5rem;
	}

	/* Font Weight */
	.fw-2 {
		font-weight: 600;
	}
    .privacy-content {
        padding: 20px;
    }
    .policy-section {
        margin-bottom: 18px;
        padding-bottom: 15px;
    }
    .policy-section h3{
        margin-bottom: 10px;
    }

    .contact-info {
        padding: 15px;
    } 
    .content-item {
        padding: 15px !important;
    }
    .school-name{
        font-size: 1.1rem;
    }
    .contact-details strong {
            font-size: 0.9rem;
        }
    .contact-icon{
        height: 40px;
        width: 40px;
    }
     .contact-details p, .contact-details p a {
            font-size: 0.89rem;
         
        }
    .contact-icon i{
        font-size: 18px;
    }
    
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    /* Text Size Classes */
	.headingsize {
		font-size: 1.4rem;
	}

	.subheadingsize {
		font-size: 1rem;
	}

	.paratextsize {
		font-size: 0.8rem;
	}

	.subparatextsize {
		font-size: 0.5rem;
	}

	/* Font Weight */
	.fw-1 {
		font-weight: 500;
	}

	.fw-2 {
		font-weight: 600;
	}

	.fw-3 {
		font-weight: 700;
	}

    .privacy-content {
        padding: 20px;
    }
    .policy-section {
        margin-bottom: 18px;
        padding-bottom: 15px;
    }
    .policy-section h3{
        margin-bottom: 10px;
    }
    
	.contact-info {
		
        padding: 20px;
    } 
     .contact-item {
		margin-bottom: 20px;
		padding: 15px;
		border-radius: 12px;
        padding: 20px !important;
    }
    .school-name{
        font-size: 1.1rem;
    }
    .contact-details strong {
            font-size: 0.9rem;
        }
    .contact-icon{
        height: 40px;
        width: 40px;
    }
     .contact-details p, .contact-details p a {
            font-size: 0.89rem;
         
        }
    .contact-icon i{
        font-size: 18px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1440px) {}