/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f8ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px; /* Space for the fixed header */
    padding-bottom: 80px; /* Space for the fixed footer */
    margin: 0;
}

/* Center all sections */
section {
    max-width: 800px;
    width: 100%;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

/* Header */
.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0a0a0a; /* Darker, more intense shade */
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6); /* Deeper shadow for a floating effect */
    border-bottom: 3px solid #1a73e8; /* Bold accent color underline */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title in the Header */
.site-header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation Links */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin-top: 10px;
    padding: 0;
}

.main-nav ul li {
    display: inline;
}

.main-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s, background-color 0.3s;
    padding: 8px 16px;
    border-radius: 3px;
}

.main-nav ul li a:hover {
    color: #0a0a0a;
    background-color: #1a73e8; /* Bright accent blue */
}

/* Contact Section */
.contact p {
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto;
    color: #0a0a0a;
}

.contact-email-image {
    margin-top: 10px;
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15); /* Soft shadow for visual appeal */
}

/* Footer */
.site-footer {
    width: 100%;
    text-align: center;
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 3px solid #1a73e8;
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.6); /* Elevated shadow effect */
}

.site-footer p {
    font-size: 14px;
    margin: 0;
    color: #a9a9a9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-footer a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #ffffff;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .hero .hero-text h2 {
        font-size: 36px;
    }

    .hero .hero-text p {
        font-size: 18px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .main-nav ul li a {
        padding: 8px;
    }
}
