* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* BBC Header Styles */
.bbc-header {
    width: 100%;
}

.bbc-header-top {
    background-color: #BB0A30;
    padding: 20px 0;
    width: 100%;
}

.bbc-logo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.bbc-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bbc-logo-box {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: #fff;
    color: #BB0A30;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    line-height: 32px;
    flex-shrink: 0;
}

.bbc-logo-text {
    color: #8B0000;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.5px;
}

.bbc-news {
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 1px;
}

.bbc-service {
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Navigation Styles */
.bbc-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.bbc-nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.bbc-nav-list li {
    display: inline-block;
}

.bbc-nav-list a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.bbc-nav-list a:hover {
    color: #BB0A30;
}

/* Main Content Styles */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article {
    max-width: 800px;
    margin: 0 auto;
}

.article-title {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.article-subtitle {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.article-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.article-share,
.article-comments {
    display: inline-block;
    margin-right: 20px;
    margin-top: 10px;
}

.share-link,
.comments-link {
    color: #BB0A30;
    text-decoration: none;
    font-size: 14px;
}

.share-link:hover,
.comments-link:hover {
    text-decoration: underline;
}

.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.article-content p {
    margin-bottom: 20px;
}

.intro-text {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.article-content h3 {
    font-size: 22px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 30px 0 15px 0;
}

.countries-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
    column-count: 2;
    column-gap: 30px;
}

.countries-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 18px;
    break-inside: avoid;
    page-break-inside: avoid;
}

.countries-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #BB0A30;
    font-size: 20px;
}

.cta-title {
    font-size: 28px;
    font-weight: bold;
    color: #BB0A30;
    margin: 40px 0 15px 0;
}

.cta-text {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 30px;
}

/* Form Styles */
.form-container {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.register-form {
    max-width: 500px;
    margin: 0 auto;
}

.block-center__wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    margin-bottom: 10px;
}

.input-holder {
    width: 100%;
}

.form-control {
    width: 100%;
    padding: 15px 1rem;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: #BB0A30;
    box-shadow: 0 0 0 2px rgba(187, 10, 48, 0.1);
}

.btn-holder {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.btn_send {
    background-color: #BB0A30;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.btn_send:hover {
    background-color: #9a0828;
}

.btn_send:active {
    background-color: #7a0620;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bbc-logo-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .bbc-service {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .bbc-logo-wrapper {
        width: 100%;
        justify-content: center;
    }

    .bbc-nav-list {
        gap: 15px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .article-title {
        font-size: 24px;
    }

    .article-subtitle {
        font-size: 20px;
    }

    .article-content {
        font-size: 16px;
    }

    .countries-list {
        column-count: 1;
        column-gap: 0;
    }

    .form-container {
        padding: 20px;
    }
}

/* Reviews Section Styles */
.reviews-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.reviews-title {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.star-icon {
    font-size: 32px;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.review-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.review-author {
    font-size: 16px;
    color: #1a1a1a;
}

.review-author strong {
    font-weight: bold;
}

.review-stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.review-date {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Reviews Responsive */
@media (max-width: 768px) {
    .reviews-section {
        margin-top: 40px;
        padding-top: 30px;
    }

    .reviews-title {
        font-size: 24px;
        flex-direction: column;
        gap: 8px;
    }

    .reviews-container {
        gap: 15px;
    }

    .review-card {
        padding: 15px;
    }
}

/* Footer Styles */
.bbc-footer {
    background-color: #1a1a1a;
    color: #fff;
    margin-top: 60px;
    padding: 50px 0 30px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo .bbc-logo-wrapper {
    justify-content: center;
}

.footer-logo .bbc-logo-box {
    width: 28px;
    height: 28px;
    font-size: 18px;
    line-height: 28px;
}

.footer-logo .bbc-news {
    font-size: 20px;
}

.footer-copyright {
    color: #999;
    font-size: 12px;
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .bbc-footer {
        padding: 40px 0 20px 0;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-copyright {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

