



/* Base font settings */
html {
    font-size: 16px; /* Root size for rem units */
}


body {
    font-family: 'Aptos', Arial, Helvetica, sans-serif;
    font-size: 1rem; /* 16px */
    line-height: 1.5;
    color: #333;
    margin: 0;
    background: #f9f9f9;
}





/* Headings */
h1 {
    font-size: 1.75rem; /* ~40px */
    font-weight: bold;
    margin-bottom: 0.0em;
}

h2 {
    font-size: 1.5rem; /* ~32px */
    font-weight: bold;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 1.35rem; /* ~28px */
    margin-bottom: 0.5em;
}

h4 {
    font-size: 1.2rem; /* ~24px */
}

h5 {
    font-size: 1.1rem; /* ~20px */
}

h6 {
    font-size: 1rem; /* ~16px */
}

/* Paragraphs */
p {
    font-size: 0.85rem; /* ~16px */
    margin-bottom: 1em;
}

/* Links */
a {
    font-size: 0.85rem;
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
button {
    font-size: 0.85rem;
    padding: 0.5em 1em;
    font-weight: bold;
}

/* Small text */
.small-text {
    font-size: 0.875rem; /* ~14px */
}

.footer-text {
    font-size: 0.75rem; /* ~12px */
    color: #666;
}

/* Responsive font scaling */
@media (max-width: 768px) {
    html {
        font-size: 12px; /* Scale down for mobile */
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 16px; /* Scale up for large screens */
    }
}









/* Keep header and footer full width */
header, footer {
    width: 100%;
}

/* Main content styling */
.content {
    max-width: 1200px;          /* Prevent content from stretching too wide */
    margin-left: auto;          /* Center horizontally */
    margin-right: auto;
    padding-left: 200px;        /* Add space inside on large screens */
    padding-right: 200px;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 1200px) {
    .content {
        padding-left: 20px;
        padding-right: 20px;
    }
}



header {
    background: #444;
    color: #fff;
    text-align: center;
    padding-bottom: 10px;


}
.header-img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;

}
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #555;
    display: flex;
    justify-content: center;

}
.menu li {
    margin: 0 10px;
}
.menu a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    transition: background 0.3s;
}
.menu a:hover, .menu a:focus {
    background: #999;
}
main {
    max-width: 800px;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 10px #ccc;
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    position: bottom;
    width: 100%;
    bottom: 0;
}
input, textarea {
    width: 100%;
    padding: 8px;
    margin: 8px 0 16px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    background: #222;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background: #444;
}

