@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    line-height: 1.7;
    margin: 0;
}

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

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0056b3;
    margin: 0;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #007bff;
    margin: 10px 0;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

main {
    padding: 60px 0;
}

.features {
    text-align: center;
    background-color: #fff;
    padding: 60px 20px;
    border-radius: 12px;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.feature-cards {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.card {
    flex: 1;
    max-width: 300px;
}

.card-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #007bff;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.philosophy {
    padding: 80px 0;
    text-align: center;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #0056b3;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #e9ecef;
    color: #6c757d;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .feature-cards {
        flex-direction: column;
        align-items: center;
    }
}
