body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f6f8fa;
    color: #222;
}
header {
    background: linear-gradient(90deg, #0a3d62 60%, #3c6382 100%);
    color: #fff;
    padding-bottom: 40px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
}
.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: #f6b93b;
}
.hero {
    text-align: center;
    padding: 60px 20px 40px 20px;
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 32px;
}
.cta-btn {
    background: #f6b93b;
    color: #0a3d62;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
}
.cta-btn:hover {
    background: #fff;
    color: #0a3d62;
}
main {
    max-width: 1100px;
    margin: -40px auto 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.08);
    padding: 40px 32px;
}
section {
    margin-bottom: 48px;
}
.about h2, .services h2, .products h2, .contact h2 {
    color: #0a3d62;
    font-size: 2rem;
    margin-bottom: 18px;
}
.stats {
    display: flex;
    gap: 40px;
    margin-top: 24px;
}
.stats div {
    background: #f6b93b;
    color: #0a3d62;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
}
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}
.service {
    background: #f1f2f6;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
}
.service h3 {
    color: #3c6382;
    margin-bottom: 10px;
}
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}
.product {
    background: #f1f2f6;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
}
.product h3 {
    color: #f6b93b;
    margin-bottom: 10px;
}
.contact form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    margin-bottom: 24px;
}
.contact input, .contact textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #d1d8e0;
    font-size: 1rem;
}
.contact button {
    background: #0a3d62;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.contact button:hover {
    background: #f6b93b;
    color: #0a3d62;
}
.contact-info p {
    margin: 6px 0;
    font-size: 1rem;
}
footer {
    background: #0a3d62;
    color: #fff;
    padding: 24px 0;
    text-align: center;
    border-radius: 0 0 16px 16px;
    margin-top: 40px;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.footer-links {
    list-style: none;
    display: flex;
    gap: 24px;
    padding: 0;
    margin: 0;
}
.footer-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.footer-links li a:hover {
    color: #f6b93b;
}
@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        padding: 18px 12px;
    }
    main {
        padding: 18px 8px;
    }
    .stats {
        flex-direction: column;
        gap: 18px;
    }
    .service-list, .product-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
