html {
    overflow-y: scroll;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f6fa;
    color: #222;
}

header {
    background: linear-gradient(135deg, #e0e7ef 0%, #1e3a8a 100%);
    color: white;
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
}

header img {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.10);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 2px;
}

header p {
    margin: 0.5rem 0 0 0;
    font-size: 1.2rem;
}

nav {
    background: #22336b;
    text-align: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 1rem 1.5rem;
    display: inline-block;
    font-weight: 500;
    transition: background 0.2s;
}

nav a:hover {
    background: #1d4ed8;
}

main,
#blog-content {
    max-width: 950px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(30, 58, 138, 0.07);
    padding: 2.5rem 2rem;
    box-sizing: border-box;
    width: 100%;
}

h2 {
    color: #1e3a8a;
    margin-top: 0;
}

ul {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-card {
    flex: 1 1 250px;
    background: #f4f6fa;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 6px rgba(30, 58, 138, 0.05);
    min-width: 220px;
}

.feature-card h3 {
    margin-top: 0;
    color: #2563eb;
    font-size: 1.1rem;
}

.cta-section {
    text-align: center;
    margin: 2.5rem 0 1rem 0;
}

.cta-button {
    background: #10b981;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
    transition: background 0.2s, color 0.2s;
}

.cta-button:hover {
    background: #059669;
    color: #e0f2f1;
}

.cta-button:hover {
    background: #1d4ed8;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-info a {
    color: #2563eb;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    font-size: 0.95rem;
    padding: 1.5rem 0;
    color: #666;
    background: #f4f6fa;
    border-top: 1px solid #e0e7ef;
    margin-top: 2rem;
}

@media (max-width: 700px) {

    main,
    #blog-content {
        padding: 1rem;
    }

    .features {
        flex-direction: column;
        gap: 1rem;
    }
}
    