* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: #333;
    background-color: #f5f7fa;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-top-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    min-height: 150px;
}

@media (max-width: 768px) {
    .header-top-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .header-meta,
    .logo,
    .header-actions {
        order: initial;
        justify-self: auto;
    }

    .logo-text {
        font-size: 16px;
    }

    .header-meta {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .language-selector {
        width: 100%;
        justify-content: center;
    }

    .lang-dropdown {
        width: 100%;
        max-width: 200px;
    }
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 150px;
    order: 2;
    justify-self: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 150px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: height 0.3s ease;
}

/* Tablet and larger screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .logo-image {
        height: 130px;
    }
}

/* Small devices (landscape or small tablets) */
@media (max-width: 768px) {
    .logo-image {
        height: 100px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .logo-image {
        height: 80px;
    }
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.header-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #666;
    order: 1;
    justify-self: start;
}

.header-date {
    font-weight: 500;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin: 0;
}

.lang-dropdown {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    background-color: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
}

.lang-dropdown:hover {
    border-color: #d42426;
    box-shadow: 0 2px 6px rgba(212, 36, 38, 0.1);
}

.lang-dropdown:focus {
    outline: none;
    border-color: #d42426;
    box-shadow: 0 0 0 3px rgba(212, 36, 38, 0.1);
}

.lang-dropdown option {
    padding: 8px;
    color: #333;
}

.header-actions {
    display: flex;
    gap: 10px;
    order: 3;
    justify-self: end;
}

/* Navigation */
.navbar {
    background: white;
    padding: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .nav-menu {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0;
    }

    .nav-menu::-webkit-scrollbar {
        height: 3px;
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: #ddd;
        border-radius: 2px;
    }
}

.nav-link {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #d42426;
    border-bottom-color: #d42426;
}

/* Main Content */
.main-content {
    padding: 30px 0;
    min-height: calc(100vh - 200px);
}

@media (max-width: 768px) {
    .main-content {
        padding: 15px 0;
    }
}

.news-layout {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

/* Hide all sidebar and ad elements */
.sidebar,
.sidebar-left,
.sidebar-right {
    display: none !important;
}

.ad-placeholder,
.ad-content,
.ad-space-center {
    display: none !important;
}

/* Featured Section */
.featured-section {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0;
}

@media (max-width: 992px) {
    .featured-article {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .featured-article {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .featured-image {
        max-height: 250px;
    }

    .featured-content {
        padding: 20px;
    }
}

.featured-image {
    overflow: hidden;
    max-height: 350px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-badge {
    display: inline-block;
    background: #d42426;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: fit-content;
}

.article-category {
    display: inline-block;
    color: #d42426;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    width: fit-content;
}

.featured-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.featured-title a {
    text-decoration: none;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: #d42426;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #666;
}

.source {
    font-weight: 600;
    color: #d42426;
}

.read-time {
    color: #999;
}

/* Category Section */
.category-section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .category-section {
        padding: 20px;
        margin-bottom: 20px;
    }
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f0f0f0;
}

.category-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.5px;
}

.view-all {
    text-decoration: none;
    color: #d42426;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #b01b1e;
}

/* Category Main Article */
.category-main-article {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

@media (max-width: 992px) {
    .category-main-article {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .category-main-article {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .article-card-image {
        height: 180px;
    }
}

.article-card-image {
    width: 100%;
    height: 200px;
    border-radius: 4px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card-image:hover img {
    transform: scale(1.05);
}

.article-card-content {
    padding: 0;
}

.article-title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.article-title a {
    text-decoration: none;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #d42426;
}

.publish-time {
    color: #999;
    font-size: 12px;
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .article-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.article-card {
    background: transparent;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.article-card-link {
    display: block;
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 4px;
}

.article-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-card-img {
    transform: scale(1.08);
}

.article-card-body {
    padding: 15px;
}

.article-card-title {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
}

.article-card-title a {
    text-decoration: none;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.article-card-title a:hover {
    color: #d42426;
}

.article-card-meta {
    font-size: 12px;
    color: #999;
}

/* Trending Section */
.trending-section {
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.trending-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.trending-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.trending-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.trending-item:last-child {
    border-bottom: none;
}

.trending-number {
    font-size: 16px;
    font-weight: 700;
    color: #d42426;
    min-width: 25px;
    text-align: center;
}

.trending-link {
    text-decoration: none;
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.trending-link:hover {
    color: #d42426;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 60px;
}

.footer p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links {
    font-size: 13px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d42426;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-meta {
        gap: 10px;
        font-size: 12px;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .featured-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .category-title {
        font-size: 16px;
    }

    .article-title {
        font-size: 15px;
    }

    .featured-content {
        padding: 15px;
    }

    .featured-badge {
        padding: 3px 10px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 16px;
    }

    .featured-title {
        font-size: 18px;
    }

    .category-title {
        font-size: 14px;
    }

    .article-title {
        font-size: 14px;
    }

    .article-card-title {
        font-size: 13px;
    }

    .nav-link {
        padding: 8px 10px;
        font-size: 12px;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Article Page Styles */
.article-content {
    background: white;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .article-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .article-content {
        padding: 15px;
    }
}

.article-full-image {
    width: 100%;
    max-height: 500px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;
}

.article-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.article-category-badge {
    display: inline-block;
    background: #d42426;
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.article-full-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

@media (max-width: 768px) {
    .article-full-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .article-full-title {
        font-size: 22px;
    }
}

.article-meta-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #666;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.article-source {
    display: flex;
    gap: 5px;
}

.article-source strong {
    color: #d42426;
}

.article-publish-date {
    color: #999;
}

.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 30px 0;
}

.article-body p {
    margin-bottom: 15px;
}

.article-body img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 6px;
}

.article-sources {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.article-sources h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.sources-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.source-item {
    padding: 15px;
    margin-bottom: 12px;
    background: #f9f9f9;
    border-left: 4px solid #d42426;
    border-radius: 4px;
}

.source-item strong {
    display: block;
    color: #d42426;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.source-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 13px;
}

.source-link:hover {
    color: #d42426;
    text-decoration: underline;
}

.article-navigation {
    margin-top: 30px;
    padding-top: 20px;
}

.back-to-home {
    display: inline-block;
    padding: 10px 20px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    background: #d42426;
    color: white;
}

@media (max-width: 768px) {
    .article-body {
        font-size: 15px;
        line-height: 1.7;
    }

    .article-full-image {
        max-height: 350px;
    }
}

@media (max-width: 480px) {
    .article-body {
        font-size: 14px;
    }

    .article-meta-info {
        flex-direction: column;
        gap: 10px;
    }

    .article-full-image {
        max-height: 250px;
        margin-bottom: 20px;
    }

    .source-item {
        padding: 12px;
    }
}

/* Category Page Styles */
.category-header-section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #d42426;
}

@media (max-width: 768px) {
    .category-header-section {
        padding: 20px;
        margin-bottom: 20px;
    }
}

.category-page-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .category-page-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .category-page-title {
        font-size: 20px;
    }
}

.category-count {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Articles List */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 768px) {
    .articles-list {
        gap: 15px;
    }
}

.article-list-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .article-list-card {
        grid-template-columns: 200px 1fr;
        gap: 15px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .article-list-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }
}

.article-list-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #d42426;
}

.article-list-image {
    width: 100%;
    height: 200px;
    border-radius: 4px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .article-list-image {
        height: 200px;
    }
}

.article-list-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.article-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-list-card:hover .article-list-image img {
    transform: scale(1.05);
}

.article-list-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-list-title {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 12px 0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .article-list-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.article-list-title a {
    text-decoration: none;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.article-list-title a:hover {
    color: #d42426;
}

.article-list-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    font-size: 12px;
}

.source-badge {
    background: #f0f0f0;
    color: #d42426;
    padding: 4px 10px;
    border-radius: 3px;
    font-weight: 600;
}

.publish-date {
    color: #999;
    font-size: 12px;
}

.article-list-excerpt {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.no-articles {
    background: white;
    padding: 60px 30px;
    border-radius: 6px;
    text-align: center;
    color: #999;
}

.no-articles p {
    font-size: 16px;
    margin: 0;
}

/* Infinite Scroll Loading Indicator */
.loading-indicator {
    text-align: center;
    padding: 40px 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    background: transparent;
    border: none;
}

.loading-indicator.active {
    display: flex !important;
}

.loading-indicator p {
    color: #666;
    font-size: 14px;
    margin: 10px 0 0 0;
    font-weight: 500;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid #d42426;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Privacy Policy Page Styles */
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.policy-header {
    background: linear-gradient(135deg, #d42426 0%, #a01a1c 100%);
    color: white;
    padding: 60px 30px;
    text-align: center;
}

.policy-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.policy-subtitle {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.policy-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.policy-date,
.policy-version {
    font-size: 14px;
    opacity: 0.9;
}

.policy-content {
    padding: 50px 40px;
}

.policy-intro {
    background: #f9fafb;
    padding: 25px;
    border-left: 4px solid #d42426;
    border-radius: 4px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.policy-intro p {
    margin: 0;
}

.policy-intro strong {
    color: #d42426;
    font-weight: 600;
}

.policy-section {
    margin-bottom: 45px;
    scroll-margin-top: 100px;
}

.section-header {
    margin-bottom: 20px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #d42426;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.section-content {
    padding-left: 55px;
}

.section-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 15px 0;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 15px 0;
}

.policy-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.policy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d42426;
    font-weight: bold;
    font-size: 18px;
}

.policy-highlight {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 4px solid #0084d6;
}

.policy-highlight.warning {
    background: #fff3cd;
    border-left-color: #ff9800;
}

.policy-highlight p {
    margin: 0;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

.contact-box {
    background: #f5f7fa;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    font-size: 15px;
}

.contact-box p {
    margin: 10px 0;
    color: #333;
}

.contact-box p:first-child {
    margin-top: 0;
}

.contact-box a {
    color: #d42426;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: #a01a1c;
    text-decoration: underline;
}

/* Privacy Rights Section */
.policy-rights-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #f9fafb 100%);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.policy-rights-section h2 {
    color: #1a1a1a;
    font-size: 26px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.policy-rights-section > p {
    color: #666;
    font-size: 15px;
    margin: 0 0 25px 0;
    line-height: 1.7;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.right-item {
    background: white;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.right-item:hover {
    background: #fff;
    border-color: #d42426;
    box-shadow: 0 4px 12px rgba(212, 36, 38, 0.1);
}

.right-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #d42426;
    margin: 0 0 10px 0;
}

.right-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Policy Footer Actions */
.policy-footer-action {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 40px;
    border-top: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.btn-back-home,
.btn-back-top {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.btn-back-home {
    background: #f0f0f0;
    color: #1a1a1a;
}

.btn-back-home:hover {
    background: #d42426;
    color: white;
}

.btn-back-top {
    background: #d42426;
    color: white;
}

.btn-back-top:hover {
    background: #a01a1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 36, 38, 0.3);
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .policy-container {
        border-radius: 0;
    }

    .policy-header {
        padding: 40px 20px;
    }

    .policy-hero h1 {
        font-size: 32px;
    }

    .policy-subtitle {
        font-size: 16px;
    }

    .policy-meta {
        flex-direction: column;
        gap: 12px;
    }

    .policy-content {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-content {
        padding-left: 0;
    }

    .section-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .policy-intro {
        padding: 20px;
        font-size: 15px;
    }

    .policy-rights-section {
        padding: 25px;
    }

    .policy-rights-section h2 {
        font-size: 20px;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .policy-footer-action {
        flex-direction: column;
        padding: 25px;
    }

    .btn-back-home,
    .btn-back-top {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .policy-header {
        padding: 30px 16px;
    }

    .policy-hero h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .policy-subtitle {
        font-size: 14px;
    }

    .policy-content {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 18px;
        gap: 10px;
    }

    .section-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .policy-intro {
        padding: 15px;
        font-size: 14px;
    }

    .section-content p {
        font-size: 14px;
    }

    .policy-highlight {
        padding: 15px;
    }

    .contact-box {
        padding: 15px;
        font-size: 14px;
    }

    .policy-rights-section {
        padding: 20px 15px;
    }

    .right-item {
        padding: 20px;
    }

    .right-item h3 {
        font-size: 15px;
    }

    .right-item p {
        font-size: 13px;
    }

    .policy-footer-action {
        padding: 20px 15px;
        gap: 10px;
    }
}

/* Contact Us Page Styles */
.contact-us-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
}

.contact-header {
    background: linear-gradient(135deg, #d42426 0%, #a01a1c 100%);
    color: white;
    padding: 60px 30px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.contact-subtitle {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.contact-content {
    padding: 50px 40px;
}

/* Quick Contact Section */
.quick-contact-section {
    margin-bottom: 60px;
}

.quick-contact-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.contact-option-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.contact-option-card:hover {
    box-shadow: 0 8px 24px rgba(212, 36, 38, 0.15);
    border-color: #d42426;
    transform: translateY(-4px);
}

.option-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-option-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-option-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.contact-email-link {
    color: #d42426;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
    word-break: break-all;
}

.contact-email-link:hover {
    color: #a01a1c;
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    background: #f9fafb;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 5px solid #d42426;
}

.contact-form-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-description {
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.required {
    color: #d42426;
}

.form-input,
.form-textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #d42426;
    box-shadow: 0 0 0 3px rgba(212, 36, 38, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.checkbox-group input {
    margin-top: 3px;
    cursor: pointer;
    accent-color: #d42426;
}

.checkbox-group a {
    color: #d42426;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    padding: 14px 30px;
    background: #d42426;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.submit-btn:hover {
    background: #a01a1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 36, 38, 0.3);
}

.form-note {
    background: #e8f4f8;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #0084d6;
    margin-top: 20px;
}

.form-note p {
    margin: 8px 0;
    font-size: 14px;
    color: #0066cc;
}

.form-note p:first-child {
    margin-top: 0;
}

/* DMCA Section */
.dmca-section {
    margin-bottom: 50px;
    padding: 40px;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 5px solid #ff9800;
}

.dmca-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.dmca-content p {
    font-size: 15px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.7;
}

.dmca-requirements {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.dmca-requirements li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: #333;
}

.dmca-requirements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff9800;
    font-weight: bold;
    font-size: 18px;
}

.dmca-highlight {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 4px solid #ff9800;
}

.dmca-highlight p {
    margin: 0;
}

.dmca-highlight a {
    color: #d42426;
    text-decoration: none;
    font-weight: 600;
}

.dmca-highlight a:hover {
    text-decoration: underline;
}

.dmca-contact {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
    text-align: center;
}

.dmca-contact p {
    margin-bottom: 12px;
}

.dmca-email {
    color: #d42426;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.dmca-email:hover {
    text-decoration: underline;
}

/* Expectations Section */
.expectations-section {
    margin-bottom: 50px;
}

.expectations-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.expectation-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: all 0.3s ease;
}

.expectation-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #d42426;
}

.expectation-number {
    font-size: 36px;
    margin-bottom: 10px;
}

.expectation-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.expectation-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Location Section */
.location-section {
    margin-bottom: 50px;
}

.location-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.location-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.location-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.location-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.location-details p {
    font-size: 15px;
    color: #666;
    margin: 5px 0;
}

.location-note {
    font-size: 13px;
    color: #999;
    margin-top: 10px !important;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 50px;
}

.faq-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.faq-question:hover {
    background: #eff1f5;
}

.faq-question h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d42426;
    color: white;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-question:hover .faq-toggle {
    transform: scale(1.1);
}

.faq-answer {
    padding: 20px;
    background: white;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: #d42426;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Social Section */
.social-section {
    text-align: center;
    margin-bottom: 40px;
}

.social-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.social-section p {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #e0e0e0;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: #d42426;
    color: #d42426;
    transform: translateY(-2px);
}

.social-link span {
    font-weight: bold;
    font-size: 16px;
}

/* Privacy Notice */
.privacy-notice {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #0084d6;
    text-align: center;
    margin-top: 40px;
}

.privacy-notice p {
    margin: 0;
    font-size: 14px;
    color: #0066cc;
    line-height: 1.6;
}

.privacy-notice a {
    color: #d42426;
    text-decoration: none;
    font-weight: 600;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

/* Responsive Design for Contact Us */
@media (max-width: 768px) {
    .contact-header {
        padding: 40px 20px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .contact-content {
        padding: 30px 20px;
    }

    .quick-contact-section h2,
    .expectations-section h2,
    .location-section h2,
    .faq-section h2,
    .social-section h2,
    .contact-form-section h2,
    .dmca-section h2 {
        font-size: 22px;
    }

    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form-section {
        padding: 25px;
    }

    .dmca-section {
        padding: 25px;
    }

    .expectations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-card {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-header {
        padding: 30px 16px;
    }

    .contact-hero h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .contact-subtitle {
        font-size: 14px;
    }

    .contact-content {
        padding: 20px 15px;
    }

    .quick-contact-section h2,
    .expectations-section h2,
    .location-section h2,
    .faq-section h2,
    .social-section h2,
    .contact-form-section h2,
    .dmca-section h2 {
        font-size: 18px;
    }

    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-option-card {
        padding: 20px;
    }

    .option-icon {
        font-size: 36px;
    }

    .contact-option-card h3 {
        font-size: 16px;
    }

    .contact-option-card p {
        font-size: 13px;
    }

    .contact-form-section {
        padding: 20px 15px;
        border-left-width: 4px;
    }

    .dmca-section {
        padding: 20px 15px;
    }

    .dmca-content p,
    .dmca-requirements li {
        font-size: 14px;
    }

    .form-input,
    .form-textarea {
        font-size: 16px;
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .expectations-grid {
        grid-template-columns: 1fr;
    }

    .expectation-item {
        padding: 20px;
    }

    .expectation-number {
        font-size: 32px;
    }

    .expectation-item h3 {
        font-size: 15px;
    }

    .expectation-item p {
        font-size: 13px;
    }

    .location-card {
        padding: 20px;
    }

    .location-icon {
        font-size: 36px;
    }

    .location-details h3 {
        font-size: 18px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h4 {
        font-size: 14px;
    }

    .faq-answer {
        padding: 15px;
        font-size: 13px;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        padding: 10px 16px;
        font-size: 13px;
    }

    .privacy-notice {
        padding: 15px;
        font-size: 13px;
    }
}