body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f6f9fc;
    color: #222;
    margin: 0;
}
.hero {
    background: linear-gradient(120deg, #0c2340 70%, #79c2f2 100%);
    color: #fff;
    padding: 70px 0 40px 0;
    text-align: center;
    position: relative;
}
.hero img {
    max-width: 120px;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: 2.7rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 18px;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.cta-btn {
    background: #79c2f2;
    color: #0c2340;
    padding: 14px 36px;
    border: none;
    border-radius: 35px;
    font-size: 1.12rem;
    font-weight: 700;
    transition: background 0.2s;
    box-shadow: 0 4px 20px #0c234022;
    text-decoration: none;
}
.cta-btn:hover {
    background: #5db4e9;
    color: #fff;
}
section {
    padding: 56px 0;
}
.container {
    width: 92%;
    max-width: 1100px;
    margin: auto;
}
.section-title {
    text-align: center;
    color: #0c2340;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
}
.about-text {
    max-width: 800px;
    margin: auto;
    font-size: 1.07rem;
    color: #333;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}
.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 3px 12px #0c234013;
    padding: 32px 24px;
    flex: 1 1 230px;
    max-width: 320px;
    min-width: 220px;
    text-align: center;
    transition: box-shadow 0.15s;
}
.card:hover {
    box-shadow: 0 6px 30px #0c23402a;
}
.card i {
    font-size: 2.5rem;
    color: #79c2f2;
    margin-bottom: 16px;
}
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.step {
    background: #e9f2fb;
    border-radius: 12px;
    padding: 24px 20px;
    flex: 1 1 180px;
    max-width: 250px;
    text-align: center;
    min-width: 180px;
}
.step i {
    font-size: 2rem;
    color: #0c2340;
    margin-bottom: 10px;
}
.contact-info, .contact-form {
    margin-bottom: 24px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 7px 0;
    border: 1px solid #c9e1f2;
    border-radius: 7px;
    background: #fafcff;
    font-size: 1rem;
}
.contact-form button {
    background: #0c2340;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    margin-top: 8px;
}
.footer {
    background: #0c2340;
    color: #fff;
    text-align: center;
    padding: 32px 0 16px 0;
    font-size: 0.98rem;
}
.footer a {
    color: #79c2f2;
    text-decoration: underline;
    margin: 0 8px;
}
@media (max-width: 768px) {
    .cards, .steps { flex-direction: column; gap: 18px;}
    .hero h1 { font-size: 2.1rem; }
    section { padding: 36px 0;}
}
