/* style/news.css */
.page-news {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-news__section {
    padding: 60px 0;
}

.page-news__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-news__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-news__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #fff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
    flex-wrap: wrap-reverse;
}

.page-news__hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-news__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.page-news__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

.page-news__hero-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.page-news__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-news__btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-news__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-news__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.page-news__btn--secondary {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
    padding: 10px 20px;
    font-size: 1em;
}

.page-news__btn--secondary:hover {
    background-color: #003366;
    color: #FFCC00;
    transform: translateY(-2px);
}

.page-news__btn--center {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 300px;
}

.page-news__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
    max-width: 400px;
    margin-top: 30px;
}

.page-news__intro p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-news__intro p a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.page-news__intro p a:hover {
    text-decoration: underline;
}

.page-news__highlights {
    background-color: #f0f5f9;
}

.page-news__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.page-news__card-img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-news__card-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-news__card-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.page-news__articles {
    background-color: #fff;
}

.page-news__article-list {
    display: grid;
    gap: 30px;
}

.page-news__article-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background-color: #fcfcfc;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-news__article-img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.page-news__article-content {
    flex-grow: 1;
}

.page-news__article-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-news__article-title a {
    color: #003366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__article-title a:hover {
    color: #FFCC00;
    text-decoration: underline;
}

.page-news__article-meta {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 10px;
}

.page-news__article-excerpt {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.page-news__read-more {
    display: inline-block;
    color: #003366;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.page-news__read-more:hover {
    color: #FFCC00;
    border-color: #FFCC00;
}

.page-news__benefits {
    background-color: #f0f5f9;
}

.page-news__benefits p {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
}

.page-news__list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.page-news__list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 1.05em;
    color: #333;
    position: relative;
    padding-left: 45px;
    text-align: justify;
}

.page-news__list li::before {
    content: '✔️';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #003366;
    font-size: 1.2em;
}

.page-news__list li strong {
    color: #003366;
}

.page-news__cta-app {
    background-color: #003366;
    color: #fff;
}

.page-news__cta-app-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.page-news__cta-app-content {
    flex: 1;
    min-width: 300px;
}

.page-news__cta-app .page-news__section-title {
    color: #FFCC00;
    text-align: left;
}

.page-news__cta-app .page-news__section-title::after {
    left: 0;
    transform: translateX(0);
}

.page-news__cta-app p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #eee;
    text-align: justify;
}

.page-news__cta-app-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-news__cta-app-image .page-news__img {
    max-height: 400px;
    width: auto;
}

.page-news__register {
    text-align: center;
    background-color: #fff;
}

.page-news__register p {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #FFCC00;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-news__hero-title {
        font-size: 3em;
    }
    .page-news__section-title {
        font-size: 2em;
    }
    .page-news__hero, .page-news__cta-app-inner {
        flex-direction: column;
        text-align: center;
    }
    .page-news__hero-content, .page-news__cta-app-content {
        order: 2;
    }
    .page-news__hero-image, .page-news__cta-app-image {
        order: 1;
        margin-bottom: 30px;
    }
    .page-news__cta-app .page-news__section-title {
        text-align: center;
    }
    .page-news__cta-app .page-news__section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .page-news__article-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-news__article-img {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-news__hero {
        padding: 80px 0;
    }
    .page-news__hero-title {
        font-size: 2.5em;
    }
    .page-news__hero-description {
        font-size: 1.1em;
    }
    .page-news__section {
        padding: 40px 0;
    }
    .page-news__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-news__grid {
        grid-template-columns: 1fr;
    }
    .page-news__card {
        padding: 20px;
    }
    .page-news__card-title {
        font-size: 1.5em;
    }
    .page-news__article-title {
        font-size: 1.3em;
    }
    .page-news__list li {
        font-size: 1em;
        padding: 15px 20px 15px 40px;
    }
    .page-news__list li::before {
        left: 10px;
        font-size: 1.1em;
    }
    .page-news__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-news__hero-title {
        font-size: 2em;
    }
    .page-news__hero-description {
        font-size: 1em;
    }
    .page-news__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-news__section-title {
        font-size: 1.5em;
    }
    .page-news__card-title {
        font-size: 1.3em;
    }
    .page-news__article-title {
        font-size: 1.1em;
    }
}