/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f7f8fa;
    color: #111;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #fff;
}

.logo {
    font-size: 20px;
    font-weight: 700;
}

.burger {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    display: none;
}

/* Main */
.main {
    padding: 24px 16px 50px 16px;
}

/* Search */
.search-wrapper {
    max-width: 800px;
    margin: 0 auto 32px;
}

.search-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid #ddd;
    font-size: 16px;
}

/* Quick links */
.quick-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.quick-item {
    text-decoration: none;
    color: inherit;
    text-align: center;
    width: 90px;
}

.icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.icon img {
    width: 25px;
}

.quick-item span {
    font-size: 14px;
    line-height: 1.2;
}

/* Categories */
.categories {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 16px 8px;
    background: #fff;
    border-radius: 12px;
    max-width: 100%;
    justify-content: center;
}

.categories a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    white-space: nowrap;
}

.categories a.active {
    color: #000;
    font-weight: 600;
}

/* ======= Mobile ======= */
@media (max-width: 768px) {

    .burger {
        display: block;
    }

    .categories {
        display: none;
    }

    .quick-links {
        gap: 16px;
    }

    .quick-item {
        width: 80px;
    }

    .icon {
        width: 52px;
        height: 52px;
    }
}

/* Article wrapper */
.article {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 20px 60px;
    background: #ffffff;
}

/* Title */
.article-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
}

/* Content */
.article-content p {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 18px;
    color: #333;
}

/* Highlighted paragraph */
.article-content .highlight {
    background: #f0f4ff;
    border-left: 4px solid #4a6cf7;
    padding: 14px 16px;
    font-weight: 500;
}

/* Mobile */
@media (max-width: 600px) {
    .article {
        padding: 24px 16px 40px;
    }

    .article-title {
        font-size: 22px;
    }

    .article-content p {
        font-size: 16px;
    }
}
.cta-button{
    background-color: #2563eb;
    color: #fff;
    padding: 10px;
    width: 100%;
    text-decoration: none;
    margin: 0 auto;
    display: block;
    max-width: 400px;
    text-align: center;
    border-radius: 15px;
    font-weight: bold;
}
.cta-button:hover{
    transform: scale(1.1);
    transition: all ease 0.5s;
}
footer{
    padding: 10px;
    max-width: 900px;
    margin: 0 auto;

}
.policy-container {
    padding-bottom: 35px;
}
.policy-container a{
    color: #000;
    font-weight: bold;
    padding-bottom: 35px;
}