:root {
    --primary-color: #1d4a0c; /* Dodger Blue */
    --secondary-color: #003366; /* Dark Blue */
    --orange-color: #1d4a0c;
    --background-color: #FFFFFF; /* White */
    --text-color: #333333; /* Dark Grey */
    --light-grey: #AAAAAA; /* Light Grey */
    --font-size: 18px;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.header {
    text-align: center;
    padding: 20px 0;
    background-color: var(--orange-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.28);
    color: #fff;
}

.article-image {
    width: 100%;
}

.logo {
    height: 50px;
}

.content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.article {
    width: 65%;
}

.sidebar {
    width: 30%;
    background-color: var(--background-color);
    padding: 20px;
    border: 1px solid var(--light-grey);
    border-radius: 8px;
    text-align: center;
}

.article-header {
    margin-bottom: 30px;
}

.article-meta {
    font-size: 14px;
    color: var(--light-grey);
}

.article-header h1 {
    color: var(--primary-color);
    font-size: 36px;
    margin: 10px 0;
}

.article-header h2 {
    color: var(--secondary-color);
    font-size: 24px;
    margin: 10px 0 20px;
}

.article section {
    margin-bottom: 30px;
}

.article h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.article p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: var(--font-size);
}

.article ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.article ul li {
    background: url('https://easy-get-life-insurance.info/resources/resources/checkmark.webp') no-repeat left center;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: var(--font-size);
}

.article ol {
    list-style-type: none;
    counter-reset: step;
    margin: 0;
    padding: 0;
}

.article ol li {
    counter-increment: step;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.article ol li:before {
    content: counter(step);
    background-color: var(--primary-color);
    color: var(--background-color);
    border-radius: 50%;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    position: absolute;
    left: 0;
}

.article-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.sidebar-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    margin-bottom: 20px;
}

.age-button, .cta-button {
    background-color: var(--orange-color);
    color: #fff;
    padding: 20px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    cursor: pointer;
    margin-bottom: 10px;
}

.age-button:hover, .cta-button:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.cta-button {
    width: 100%;
    box-sizing: border-box;
}

.footer {
    background-color: var(--orange-color);
    padding: 20px;
    text-align: center;
    color: #fff;
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.footer__contact h3,
.footer__contact p {
    text-align: start;
    margin: 0;
}

.footer__contact a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.footer__contact a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    gap: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer__text {
    text-align: start;
    max-width: 600px;
}

.content__wrapper {
    margin: 0 auto;
    max-width: 600px;
    min-height: 28vh;
}

@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }

    .article {
        width: 100%;
    }

    .sidebar {
        width: 100%;
        margin-top: 20px;
        display: none;
    }

    .article-buttons .age-button,
    .cta-button {
        flex: 1 1 calc(100% - 10px);
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 24px;
    }

    .article-header h2 {
        font-size: 18px;
    }
}
