/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;700&display=swap');

body {
    font-family: 'Cairo', sans-serif;
    color: #363934; /* Charcoal Gray */
    background-color: #ffffff; /* Pure White */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #0E304C; /* Midnight Blue */
}

/* Paragraphs */
p {
    font-weight: 300;
    color: #363934; /* Charcoal Gray */
}

/* Links */
a {
    color: #02557A; /* Ocean Blue */
    text-decoration: none;
}

a:hover {
    color: #94D351; /* Lime Green */
}

/* Buttons */
button {
    background-color: #94D351; /* Lime Green */
    color: #ffffff; /* Pure White */
    border: none;
    padding: 10px 20px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    cursor: pointer;
}

button:hover {
    background-color: #02557A; /* Ocean Blue */
}

/* Logo */
.logo {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    color: #0E304C; /* Midnight Blue */
}

/* General Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header, .footer {
    background-color: #0E304C; /* Midnight Blue */
    color: #ffffff; /* Pure White */
    padding: 20px;
    text-align: center;
}

.main-content {
    padding: 20px;
}

/* Clear Space for Logo */
.logo-space {
    margin: 20px 0;
}

/* Additional Styles */
.bold-text {
    font-weight: 700;
}

.light-text {
    font-weight: 300;
}
