* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Abel', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #272626;
    background: #fff;
}
a {
    color: #2f5aae;
    text-decoration: none;
}
a:hover {
    color: #2f5aae;
}
.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    border-bottom: 1px solid #f0f0f0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.logo img {
    width: 62px;
    height: auto;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}
.nav-menu li a {
    font-family: Impact, Charcoal, sans-serif;
    font-size: 0.8em;
    font-weight: 100;
    text-transform: uppercase;
    color: #272626;
    padding: 0;
    letter-spacing: 0px;
}
.nav-menu li a:hover,
.nav-menu li a.active {
    color: #2f5aae;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
}
.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    background: #272626;
    margin: 5px 0;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    padding: 100px 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #eee;
}
.btn {
    display: inline-block;
    background: #2f5aae;
    color: #fff;
    padding: 13px 30px;
    border-radius: 99px;
    font-size: 1.1em;
    font-weight: 400;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn:hover {
    background: #2f5aae;
    color: #fff;
}

/* Page Title */
.page-title {
    background: #f4f5f7;
    padding: 40px 15px;
    text-align: left;
}
.page-title h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

/* Content */
.content-section {
    padding: 40px 0;
}
.content-section h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 30px 0 15px;
    color: #272626;
}
.content-section h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin: 25px 0 12px;
}
.content-section p {
    margin-bottom: 15px;
    color: #272626;
}
.content-section ul, .content-section ol {
    margin: 10px 0 15px 20px;
}
.content-section li {
    margin-bottom: 8px;
}

/* Steps */
.steps {
    counter-reset: step;
    list-style: none;
    margin: 15px 0;
    padding: 0;
}
.steps li {
    counter-increment: step;
    margin-bottom: 10px;
    padding-left: 35px;
    position: relative;
}
.steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #2f5aae;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 13px;
    font-weight: 700;
}

/* Cards Grid */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
}
.card {
    background: #f4f5f7;
    padding: 25px;
    border-radius: 8px;
}
.card h3 {
    margin-top: 0;
}
.card p {
    margin-bottom: 0;
}

/* App Cards */
.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}
.app-card {
    background: #f4f5f7;
    padding: 20px;
    border-radius: 8px;
    border-top: 3px solid #2f5aae;
}
.app-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2f5aae;
}
.app-card ul {
    margin: 5px 0 0 15px;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.blog-card {
    background: #f4f5f7;
    padding: 25px;
    border-radius: 8px;
}
.blog-card h2 {
    margin-top: 0;
    font-size: 22px;
}
.blog-card .meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}
.blog-card .excerpt {
    margin-bottom: 15px;
}
.read-more {
    color: #2f5aae;
    font-weight: 600;
}

/* Disclaimer */
.disclaimer {
    background: #f4f5f7;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 14px;
    color: #666;
}

/* Footer */
.footer {
    background: #121212;
    color: #ffffff;
    text-align: center;
    padding: 20px 15px;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 100;
    }
    .nav-menu.open {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .header-inner {
        position: relative;
    }
    .hero {
        padding: 60px 15px;
        min-height: 300px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 16px;
    }
    .grid-2, .app-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    .page-title h1 {
        font-size: 28px;
    }
    .content-section h2 {
        font-size: 24px;
    }
}
