/* Header Section */
header {
	width: 95%; /* Slightly reduce the width for cleaner alignment */
	margin: 20px auto; /* Center the header */
	text-align: center; /* Align text to the left */
	padding: 20px; /* Add padding for breathing space */
	background-color: #f9f9f9; /* Light background for better contrast */
	border: 1px solid #e3e3e3; /* Subtle border for structure */
	border-radius: 8px; /* Rounded corners */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}
header h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
	font-weight: bold;
	color: #4a90e2;
}
header p {
	font-size: 1rem;
	margin-bottom: 5px;
}
section {
	width:95%;
	margin: 20px auto;
	padding: 20px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	
}

section h2 {
	font-size: 1.8rem;
	color: #4a90e2;
	margin-bottom: 10px;
	border-bottom: 2px solid #ddd;
	padding-bottom: 5px;
	font-weight: bold;
}
.content {
	margin-bottom: 20px;
}
.content p {
	font-size: 1rem;
	margin-bottom: 5px;
}

.team-left-align-text {
   text-align: justify;
    margin-bottom: 1em;
}

.content strong {
	font-weight: 600;
}
.values, .team {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.value-box, .team-member {
	flex: 1 1 calc(25% - 20px);
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
	text-align: center;
	background: #f9f9f9;
}
.value-box h3, .team-member h3 {
	color: #004080;
}
.team-member img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin-bottom: 10px;
}
footer {
	background: #333;
	color: #fff;
	padding: 10px 15px;
	text-align: center;
}

.social-impact-links {
    margin-top: 2em;
	text-align: justify;
}

.social-impact-links h4 {
	font-size: 16px;
    margin-bottom: 0.5em;
    font-weight: bold;
    color: #444;
}

.social-impact-links ul {
    list-style-type: disc;
    padding-left: 20px;
}

.social-impact-links a {
    text-decoration: none;
    color: #0056b3;
}

.social-impact-links a:hover {
    text-decoration: underline;
}


/* ✅ Large Desktops (1920px and above) */
@media (min-width: 1920px) {

    header h1 {
        font-size: 3rem;
    }

    section h2 {
        font-size: 2rem;
    }

	.content p {
		font-size: 1.1rem;
		margin-bottom: 5px;
	}

	.social-impact-links {
        font-size: 1.1rem;
    }

    .social-impact-links h4 {
        font-size: 18px;
    }

    .values, .team {
        gap: 30px; /* More spacing between items */
    }

    .value-box, .team-member {
        flex: 1 1 calc(25% - 20px); /* More compact layout */
    }

    .team-member img {
        width: 120px;
        height: 120px;
    }
}

/* ✅ Standard Laptops (1280px - 1536px) */
@media (max-width: 1280px) {

    header h1 {
        font-size: 2.2rem;
    }

    section h2 {
        font-size: 1.6rem;
    }

	.content p {
		font-size: 0.9rem;
		margin-bottom: 5px;
	}

	.social-impact-links {
        font-size: 0.95rem;
    }

    .social-impact-links h4 {
        font-size: 15px;
    }

    .team-member img {
        width: 90px;
        height: 90px;
    }
}

/* ✅ Small Laptops (1024px - 1280px) */
@media (max-width: 1024px) {
    header {
        padding: 20px;
    }

    section {
        width: 95%;
        padding: 15px;
    }

    header h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

	.content p {
		font-size: 0.85rem;
		margin-bottom: 5px;
	}

	.social-impact-links {
		font-size: 0.85rem;
        padding-left: 10px;
        padding-right: 10px
    }

    .social-impact-links h4 {
        font-size: 14px;
    }
	
    .values, .team {
        flex-direction: column; /* Stack vertically */
    }

    .value-box, .team-member {
        flex: 1 1 100%; /* Full width */
    }

    .team-member img {
        width: 80px;
        height: 80px;
    }
}