
/* General Body Styles */
body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    line-height: 1.8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header and Navigation */
header {
    background-color: #162447;
    padding: 15px 0;
    border-bottom: 3px solid #e43f5a;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: #f8f8f8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #e43f5a;
}

.cta-button {
    background-color: #e43f5a;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #b32e42;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    color: #fff;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

/* Main Content Sections */
main section {
    padding: 60px 0;
    border-bottom: 1px solid #333;
}

main h2 {
    text-align: center;
    font-size: 2.8em;
    color: #e43f5a;
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: #162447;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(228, 63, 90, 0.4);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.5em;
    color: #e43f5a;
    margin-top: 0;
}

/* About Us Section */
.about-us {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-us img {
    max-width: 40%;
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: #162447;
    color: #ccc;
    padding: 40px 0;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
    margin-bottom: 30px;
}

.footer-grid h4 {
    color: #e43f5a;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
}

.footer-grid ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-grid ul li a:hover {
    color: #fff;
}

.social-icons img {
    height: 30px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Simple toggle for mobile, can be improved with JS */
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .about-us {
        flex-direction: column;
    }

    .about-us img {
        max-width: 80%;
        margin-bottom: 20px;
    }
}
