body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f8fb;
    color: #222;
}

header {
    background: #1e3a5c;
    color: #fff;
    padding: 2rem 0 1rem 0;
    text-align: center;
}

.logo {
    width: 64px;
    height: 64px;
    margin-bottom: 0.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    font-size: 1.2rem;
    color: #b3d8f7;
    margin-top: 0.5rem;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 2px 8px rgba(30,58,92,0.08);
    margin: 2rem auto;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
}

.hero-img {
    width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
}

.hero-content {
    padding: 2rem;
    min-width: 250px;
}

.cta-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: #1e3a5c;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: not-allowed;
    opacity: 0.7;
    transition: background 0.2s;
}

.features {
    margin: 3rem auto;
    max-width: 700px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(30,58,92,0.06);
    padding: 2rem;
}

.features h3 {
    margin-top: 0;
    color: #1e3a5c;
}

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

.features li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.features li:before {
    content: '🎣';
    position: absolute;
    left: 0;
    top: 0.1rem;
}

footer {
    text-align: center;
    padding: 1.5rem 0;
    background: #e3eef7;
    color: #1e3a5c;
    font-size: 1rem;
    margin-top: 2rem;
}

@media (max-width: 700px) {
    .hero {
        flex-direction: column;
    }
    .hero-img {
        width: 100%;
        border-radius: 12px 12px 0 0;
        height: 180px;
    }
    .hero-content {
        padding: 1.2rem;
    }
    .features {
        padding: 1rem;
    }
}
