/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styling */
body {
    font-family: 'Gochi Hand', cursive;
    background: linear-gradient(135deg, #111, #222);
    color: #93b3de;
    text-align: center;
    line-height: 1.6;
    padding: 0;
    min-height: 100vh; /* Ensures the body takes full viewport height */
    display: flex;
    flex-direction: column;
}

/* Container for header content */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Header section */
header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px 0;
    border-bottom: 5px solid #93b3de;
    margin-bottom: 20px; /* Reduced margin */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

header .logo {
    width: 250px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3em;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.subtitle {
    font-size: 1.2em;
    color: #93b3de;
    margin-top: 10px;
}

/* Main content area */
main {
    flex-grow: 1; /* Ensures that the main content fills available space */
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Content section */
.content-section {
    margin-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 20px;
}

p {
    font-size: 1.1em;
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Link styling */
a {
    color: #93b3de;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Footer styling */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    color: #93b3de;
    text-align: center;
    border-top: 5px solid #93b3de;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.3);
}

footer p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

footer .footer-logo {
    width: 200px;
    height: auto;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    .subtitle {
        font-size: 1.1em;
    }

    .content-section {
        padding: 20px;
    }

    footer p {
        font-size: 1em;
    }
}


