body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
    text-align: center;
}
.header {
    width: 100%;
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 40px;
    max-width: 100%;
    margin-right: 10px;
}
.logo span {
    font-size: 1.5rem;
    font-weight: bold;
}
.nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.nav a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}
.hero {
    width: 100%;
    height: 300px;
    background: url('top.webp') no-repeat center center/cover;
    max-width: 100%;
    display: block;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.content {
    padding: 20px;
    border-radius: 5px;
    max-width: 600px;
}
.title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.subtitle, .business-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    white-space: normal;
}
.business-section {
    margin-top: 40px;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
}
.business-title, .core-values-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.core-values-section {
    margin-top: 60px;
}
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.core-value {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}
.core-value.visible {
    opacity: 1;
    transform: translateY(0);
}
.contact-form {
    background: #fff;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    margin: 40px auto;
}
.contact-form h3 {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.contact-form input[type="submit"] {
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.contact-form input[type="submit"]:hover {
    background-color: #555;
}
.footer {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.footer-logo {
    height: 40px;
    max-width: 100%;
    margin-bottom: 10px;
}


/* Media Queries for Responsiveness */
@media (max-width: 600px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 10px 0px;
    }
    .nav {
        flex-direction: column;
        gap: 10px;
    }
    .hero {
        height: 200px;
    }
    .title {
        font-size: 2rem;
    }
    .subtitle, .business-content {
        font-size: 1rem;
    }
    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (min-width: 601px) and (max-width: 768px) {
    .hero {
        height: 250px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        height: 280px;
    }
}

@media (min-width: 1025px) {
    .hero {
        height: 300px;
    }
}
