@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* Reset some basic styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header styles */
header {
    background-color: #001e28;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    margin-bottom: 15px; /* space between logo and header title */
}

.logo-container .logo {
    max-width: 150px; /* Adjust size as needed */
    height: auto;
    display: block;
    margin: 0 auto; /* Center the logo */
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ff0046;
}

/* Navigation styles */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #00141e;
    color: #ff0046;
}

/* Main content styling */
main {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

.content-section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.content-section h2 {
    font-size: 2rem;
    color: #001e28;
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 1.4rem;
    color: #333;
    margin: 20px 0 10px;
}

.content-section p {
    margin-bottom: 15px;
    color: #555;
}

.content-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-section ul li {
    margin-bottom: 10px;
    list-style: disc;
}

/* Buttons and links */
a {
    color: #001e28;
    text-decoration: underline;
}

a:hover {
    color: #00141e;
    text-decoration: none;
}

/* Footer styling */


footer {
    background-color: #001e28;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
    margin-top: 40px;
}

/* Responsive layout */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li a {
        padding: 12px;
    }

    header h1 {
        font-size: 2rem;
    }

    .logo-container .logo {
        max-width: 120px;
    }

    .content-section {
        padding: 20px;
    }
}

/* Additional styles for readability */
strong {
    color: #001e28;
    font-weight: bold;
}

code {
    background-color: #f4f4f4;
    padding: 3px 6px;
    border-radius: 4px;
    font-family: monospace;
}

/* Optional: Add smooth scrolling */
html {
    scroll-behavior: smooth;
}
.store-buttons {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.store-buttons li {
    display: inline-block;
}

.store-buttons img {
    display: block;
}
