
/* Header Section */
header {
    width: 95%; /* Slightly reduce the width for cleaner alignment */
    margin: 20px auto; /* Center the header */
    text-align: left; /* 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;
}

header p strong {
    font-size: inherit; 
    font-weight: bold;

}

/* Special Styling for Long Paragraphs */
header p:last-of-type {
    font-size: inherit; /* Slightly larger font */
    margin-top: 15px; /* Add spacing above long message */
    color: #444; /* Darker color for emphasis */
}

/* Pointer Navigation Styling */
.section-pointers {
	width: 95%;
	margin: 20px auto;
	padding: 15px;
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 8px;
}

.section-pointers h2 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: #4a90e2;
	font-weight: bold;
}

.section-pointers ul {
	list-style: none;
	padding: 0;			
}

.section-pointers li {
	margin-bottom: 10px;

}

.section-pointers a {
	text-decoration: none;
	font-size: 1rem;
	color: #0056b3;			
	transition: color 0.3s;
}

.section-pointers a:hover {
	color: #444;
}

/* Sections */
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;
}

section h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 8px;
}

section p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

section ul {
    margin-left: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

section ul li {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Links */
a {
    color: #4a90e2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    margin: 20px auto;
    font-size: 0.9rem;
    color: #777;
}

footer a {
    color: #4a90e2;
}

/* ✅ Large Desktops (1920px and above) */
@media (min-width: 1920px) {

    header h1 {
        font-size: 3rem;
    }

    .section-pointers h2 {
        font-size: 1.75rem;
    }

    .section-pointers a {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    section h3 {
        font-size: 1.6rem;
    }

    section p, section ul li {
        font-size: 1.2rem;
    }
}


/* ✅ Standard Laptops (1280px - 1536px) */
@media (max-width: 1280px) {

    header {
        padding: 15px;
    }

    header h1 {
        font-size: 2.2rem;
    }

    .section-pointers {
        font-size: 1rem;
    }

    .section-pointers h2 {
        font-size: 1.4rem;
    }

    section h2 {
        font-size: 1.6rem;
    }

    section h3 {
        font-size: 1.3rem;
    }

    section p, section ul li {
        font-size: 1rem;
    }
}

/* ✅ Small Laptops (1024px - 1280px) */
@media (max-width: 1024px) {

    header {
        padding: 10px;
    }

    header h1 {
        font-size: 2rem;
    }

    .section-pointers {
        font-size: 0.95rem;
        width: 95%;
    }

    .section-pointers h2 {
        font-size: 1.3rem;
    }

    .section-pointers a {
        font-size: 0.9rem;
    }

    section {
        width: 95%;
        padding: 15px;
    }

    section h2 {
        font-size: 1.5rem;
    }

    section h3 {
        font-size: 1.2rem;
    }

    section p, section ul li {
        font-size: 0.95rem;
    }
}
