body {
    margin: 0;
    font-family: 'Radio Canada', sans-serif;
}

header {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: white;
}

.left-section,
.right-section {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 16px;
}

.menu-icon,
.search-icon {
    font-size: 20px;
    cursor: pointer;
}

.logo img {
    width: 70px;
}

.main-nav {
    background-color: #d60000;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.main-nav li {
    color: white;
    padding: 14px 20px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

.article {
    max-width: 700px;
    margin: 10px auto;
    font-family: 'Radio Canada', sans-serif;
    padding: 0 16px;
    line-height: 1.6;
}

.article-title {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.article-title .green {
    color: #0a8a0a;
}

.article-title .red {
    color: #d60000;
}

.article-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.article-image {
    margin: 20px 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.article-lead {
    font-size: 18px;
    font-weight: 400;
}

.instructions-section {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    font-family: "Radio Canada", sans-serif;
}

.instructions-list {
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #222;
}

.form-box {
    background: linear-gradient(to bottom, #e52d27, #b31217);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.form input,
.phone-input input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    margin-bottom: 12px;
    font-size: 16px;
    box-sizing: border-box;
}

.phone-input {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 0 10px;
    gap: 8px;
}

.phone-input img {
    width: 24px;
    height: auto;
}

.phone-input span {
    font-weight: bold;
    color: #333;
}

.phone-input input {
    border: none;
    flex: 1;
    padding: 12px 0;
}

.submit-btn {
    width: 100%;
    background-color: #ff5e5e;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: #e14c4c;
}

.comment-section {
    font-family: "Lato", sans-serif;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.comment {
    display: flex;
    margin-bottom: 24px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 12px;
}

.comment-body {
    margin-top: 18px;
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 6px;
    flex-wrap: wrap;
    gap: 6px;
}

.name {
    font-weight: 300;
    margin-right: 4px;
}

.phone {

    margin-left: 10%;
    color: #888;
}

.like {
    margin-left: auto;
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #f90;
    gap: 4px;
}

.heart-icon {
    width: 16px;
    height: 16px;
}

.text {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

.site-footer {
    background-color: #D8232A;
    color: white;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 15px;
    padding: 1px 20px;
    line-height: 1.6;
    font-weight: 300;
}

.site-footer a {
    color: white;
    text-decoration: underline;
}

.site-footer p {
    margin-bottom: 20px;
}
