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

:root {
    --primary-text-color: #1a1a2e;
    --secondary-text-color: #16213e;
    --accent-color: #0f4c75;
    --accent-color-dark: #0a3a5c;
    --telegram-color: #0088cc;
    --twitter-color: #000000;
    --light-bg: #f8f9fa;
    --hero-gradient: linear-gradient(135deg, #0f4c75 0%, #1a1a2e 100%);
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--primary-text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

p {
    color: var(--secondary-text-color);
    line-height: 1.6rem;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    -webkit-tap-highlight-color: transparent;
}

.flex {
    display: flex;
    align-items: center;
}

.container {
    max-width: 1180px;
    margin-inline: auto;
    overflow: hidden;
    padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll */
body, html {
    max-width: 100%;
    overflow-x: hidden;
}

/* Navigation Styles */
nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    z-index: 99;
    left: 0;
    right: 0;
    width: 100%;
}

.main-nav {
    justify-content: space-between;
    padding-block: 15px;
    position: relative;
}

.company-logo .logo-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.company-logo .logo-content i {
    font-size: 28px;
}

.company-logo .logo-text {
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links ul {
    gap: 25px;
}

.hover-link {
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hover-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.nav-item.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.nav-item a {
    color: inherit;
}

.social-links {
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    color: white;
}

.telegram-icon {
    background-color: var(--telegram-color);
}

.telegram-icon:hover {
    background-color: #0077b5;
    transform: scale(1.1) rotate(5deg);
}

.twitter-icon {
    background-color: var(--twitter-color);
}

.twitter-icon:hover {
    background-color: #333;
    transform: scale(1.1) rotate(-5deg);
}
/* Hero Section */
.hero-section {
    position: relative;
    background: var(--hero-gradient);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 60px 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
    color: #e0e0e0;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: white;
    color: var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-secondary {
    background-color: var(--telegram-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #0077b5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-text-color);
}

.stat-card p {
    color: var(--secondary-text-color);
    font-size: 0.95rem;
}

/* Search Section */
.search-section {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    margin: 30px auto;
    max-width: 900px;
    position: relative;
    overflow: hidden;
}

.search-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(15, 76, 117, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.search-section h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
}

.search-section h2 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.search-bar-wrapper {
    max-width: 650px;
    margin: 0 auto;
    gap: 0;
    justify-content: center;
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 60px;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(15, 76, 117, 0.15);
    transition: all 0.3s ease;
}

.search-bar-wrapper:focus-within {
    box-shadow: 0 15px 50px rgba(15, 76, 117, 0.25);
    transform: translateY(-2px);
}

.news-input {
    flex: 1;
    height: 50px;
    padding: 0 25px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
}

.news-input:focus {
    outline: none;
}

.news-input::placeholder {
    color: #aaa;
    transition: all 0.3s ease;
}

.news-input:focus::placeholder {
    color: #ccc;
    transform: translateX(5px);
}

.search-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-button:hover {
    background: linear-gradient(135deg, var(--accent-color-dark) 0%, var(--accent-color) 100%);
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(15, 76, 117, 0.4);
}

.search-button:active {
    transform: scale(0.98);
}

.search-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.search-button:hover i {
    transform: translateX(3px);
}

/* Quick search tags */
.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.search-tag {
    background: white;
    color: var(--accent-color);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 76, 117, 0.2);
}

.search-tag:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 76, 117, 0.3);
}

/* Main Content */
main {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* News Cards */
.cards-container {
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 30px;
    align-items: start;
    padding: 20px;
}

.card {
    width: 360px;
    min-height: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 15px;
    cursor: pointer;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-8px);
}

.card-header {
    position: relative;
}

.card-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Category-specific colors */
.card-category.breaking {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    animation: pulse-breaking 2s infinite;
}

@keyframes pulse-breaking {
    0%, 100% { box-shadow: 0 2px 8px rgba(255,0,0,0.4); }
    50% { box-shadow: 0 2px 15px rgba(255,0,0,0.7); }
}

.card-category.technology { background: linear-gradient(135deg, #667eea, #764ba2); }
.card-category.business { background: linear-gradient(135deg, #11998e, #38ef7d); }
.card-category.economy { background: linear-gradient(135deg, #f093fb, #f5576c); }
.card-category.politics { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.card-category.sports { background: linear-gradient(135deg, #fa709a, #fee140); }
.card-category.entertainment { background: linear-gradient(135deg, #a8edea, #fed6e3); color: #333; }
.card-category.science { background: linear-gradient(135deg, #667eea, #764ba2); }
.card-category.health { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.card-category.environment { background: linear-gradient(135deg, #0ba360, #3cba92); }
.card-category.education { background: linear-gradient(135deg, #5ee7df, #b490ca); }
.card-category.culture { background: linear-gradient(135deg, #f83600, #f9d423); }
.card-category.defense { background: linear-gradient(135deg, #232526, #414345); }
.card-category.infrastructure { background: linear-gradient(135deg, #4b6cb7, #182848); }
.card-category.agriculture { background: linear-gradient(135deg, #56ab2f, #a8e063); }

/* Time ago badge */
.card-time-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Card hover overlay */
.card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .card-header::after {
    opacity: 1;
}

/* Read more indicator */
.card-content::after {
    content: 'Read more →';
    display: block;
    margin-top: 15px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.card:hover .card-content::after {
    opacity: 1;
    transform: translateX(0);
}

/* Loading skeleton animation */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 0px, #e0e0e0 50px, #f0f0f0 100px);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.2rem;
    color: var(--primary-text-color);
    margin-bottom: 10px;
}

.news-source {
    margin-block: 12px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.news-source .time-ago {
    color: #888;
    font-weight: 400;
}

.news-desc {
    color: var(--secondary-text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--hero-gradient);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: white;
    color: var(--accent-color);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: #e0e0e0;
}

/* About Page Styles */
.about-hero {
    position: relative;
    background: var(--hero-gradient);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 40px 20px;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.about-main {
    padding: 60px 0;
}

.about-section {
    padding: 60px 20px;
}

.gray-bg {
    background-color: var(--light-bg);
    margin: 40px 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.about-text h2 i {
    margin-right: 10px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-icon {
    font-size: 15rem;
    color: var(--accent-color);
    opacity: 0.1;
}

.section-center-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 50px;
}

.section-center-title i {
    margin-right: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-text-color);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.coverage-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.coverage-list h3 {
    font-size: 1.6rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.styled-list {
    list-style: none;
}

.styled-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.styled-list li i {
    color: var(--accent-color);
    margin-top: 5px;
    font-size: 1.1rem;
}

.telegram-section {
    background: linear-gradient(135deg, var(--telegram-color), #0077b5);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    margin: 60px 0;
}

.telegram-icon-large {
    font-size: 5rem;
    margin-bottom: 20px;
}

.telegram-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.telegram-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 30px;
}

.telegram-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    font-size: 2.5rem;
}

.feature-item span {
    font-weight: 600;
}

.btn-telegram {
    background: white;
    color: var(--telegram-color);
    font-size: 1.2rem;
    padding: 15px 40px;
}

.btn-telegram:hover {
    background: var(--accent-color);
    color: white;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin: 50px 0 30px;
    padding: 20px 0;
}

.btn-load-more {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-dark));
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.3);
}

.btn-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 76, 117, 0.4);
}

.btn-load-more:active {
    transform: translateY(0);
}

.btn-load-more i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: rotate(180deg);
}

.btn-load-more:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Read Original Article Button */
.article-read-original {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
}

.btn-read-original {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-read-original:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997, #28a745);
}

.btn-read-original i {
    font-size: 1rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.why-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-text-color);
}

.connect-section {
    text-align: center;
    padding: 60px 20px;
}

.connect-section h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.connect-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.social-connect {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-connect-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 40px;
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 300px;
}

.social-connect-btn i {
    font-size: 3rem;
}

.social-connect-btn div {
    text-align: left;
}

.social-connect-btn strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.social-connect-btn span {
    display: block;
    opacity: 0.9;
}

.telegram-btn {
    background: var(--telegram-color);
}

.telegram-btn:hover {
    background: #0077b5;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.3);
}

.twitter-btn {
    background: var(--twitter-color);
}

.twitter-btn:hover {
    background: #333;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .cards-container {
        gap: 25px;
    }
    
    .card {
        width: calc(50% - 15px);
        min-width: 300px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .main-nav {
        flex-direction: column;
        gap: 10px;
        padding: 12px 20px;
        text-align: center;
    }
    
    .company-logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .company-logo .logo-text {
        font-size: 18px;
    }
    
    .company-logo .logo-content i {
        font-size: 24px;
    }
    
    .nav-links {
        width: 100%;
    }
    
    .nav-links ul {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .nav-item {
        background: rgba(15, 76, 117, 0.1);
        border-radius: 20px;
        padding: 6px 12px;
    }
    
    .social-links {
        gap: 12px;
        justify-content: center;
        width: 100%;
        margin-top: 5px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 400px;
        margin-top: 130px;
    }
    
    .hero-content {
        padding: 40px 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        text-align: center;
    }
    
    /* Load More and Read Original buttons */
    .btn-load-more,
    .btn-read-original {
        padding: 12px 30px;
        font-size: 1rem;
        width: 90%;
        max-width: 350px;
    }
    
    .load-more-container {
        margin: 40px 0 20px;
        text-align: center;
    }
    
    .article-read-original {
        padding: 15px;
        margin: 20px 0;
    }

    /* Stats Section */
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 30px 20px;
        margin-top: -40px;
    }
    
    .stat-card {
        padding: 25px 15px;
        text-align: center;
    }
    
    .stat-card i {
        font-size: 2.2rem;
    }
    
    .stat-card h3 {
        font-size: 1rem;
    }
    
    .stat-card p {
        font-size: 0.85rem;
    }
    
    /* Search Section */
    .search-section {
        text-align: center;
        padding: 35px 20px;
        margin: 20px 15px;
        border-radius: 15px;
    }
    
    .search-section h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .search-bar-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 0;
        align-items: stretch;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }
    
    .search-bar-wrapper:focus-within {
        transform: none;
        box-shadow: none;
    }
    
    .news-input {
        width: 100%;
        height: 50px;
        font-size: 1rem;
        text-align: left;
        padding: 0 20px;
        background: white;
        border-radius: 25px;
        border: 2px solid rgba(15, 76, 117, 0.15);
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        margin-bottom: 12px;
    }
    
    .news-input:focus {
        border-color: var(--accent-color);
        box-shadow: 0 4px 20px rgba(15, 76, 117, 0.15);
    }
    
    .search-button {
        width: 100%;
        padding: 14px 30px;
        border-radius: 25px;
        justify-content: center;
    }
    
    .search-tags {
        margin-top: 18px;
        gap: 8px;
    }
    
    .search-tag {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    /* News Cards */
    .section-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .cards-container {
        justify-content: center;
        padding: 20px 10px;
        gap: 20px;
    }
    
    .card {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    }
    
    /* About Page */
    .about-hero {
        min-height: 300px;
        margin-top: 90px;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-icon {
        font-size: 8rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .section-center-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .telegram-section {
        padding: 40px 30px;
    }
    
    .telegram-content h2 {
        font-size: 2rem;
    }
    
    .telegram-features {
        gap: 20px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .social-connect {
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-connect-btn {
        width: 100%;
        min-width: auto;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .main-nav {
        padding: 10px 15px;
        gap: 8px;
    }
    
    .company-logo .logo-text {
        font-size: 15px;
    }
    
    .company-logo .logo-content i {
        font-size: 20px;
    }
    
    .company-logo .logo-content {
        gap: 8px;
    }
    
    .nav-links {
        width: 100%;
        order: 3;
        margin-top: 5px;
    }
    
    .nav-links ul {
        flex-wrap: wrap;
        gap: 6px;
        width: 100%;
        justify-content: center;
    }
    
    .nav-item {
        font-size: 0.75rem;
        padding: 5px 10px;
        background: rgba(15, 76, 117, 0.1);
        border-radius: 15px;
    }
    
    .social-links {
        gap: 10px;
        order: 2;
    }
    
    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 320px;
        margin-top: 155px;
    }
    
    .hero-content {
        padding: 30px 15px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        gap: 12px;
        align-items: center;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Stats Section */
    .stats-section {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 25px 15px;
        margin-top: -25px;
    }
    
    .stat-card {
        padding: 18px 12px;
        text-align: center;
    }
    
    .stat-card i {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .stat-card h3 {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
    
    .stat-card p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    /* Search Section */
    .search-section {
        padding: 25px 15px;
        text-align: center;
        margin: 15px 10px;
        border-radius: 12px;
    }
    
    .search-section h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .search-section h2 i {
        display: block;
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .search-bar-wrapper {
        align-items: stretch;
    }
    
    .news-input {
        height: 48px;
        font-size: 0.95rem;
        padding: 0 18px;
        text-align: left;
        border-radius: 24px;
        margin-bottom: 10px;
    }
    
    .search-button {
        padding: 14px 25px;
        font-size: 0.95rem;
        border-radius: 24px;
        width: 100%;
    }
    
    .search-tags {
        margin-top: 15px;
        gap: 6px;
    }
    
    .search-tag {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    /* Main Content */
    main {
        padding: 25px 0;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .section-title::after {
        width: 50px;
        height: 3px;
    }
    
    /* News Cards */
    .cards-container {
        padding: 10px 5px;
        gap: 18px;
    }
    
    .card {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        margin: 0 auto;
    }
    
    .card-header img {
        height: 180px;
    }
    
    .card-category {
        font-size: 0.7rem;
        padding: 4px 10px;
        top: 10px;
        left: 10px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-content h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .news-source {
        font-size: 0.75rem;
        margin-block: 8px;
    }
    
    .news-desc {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Load More Button */
    .load-more-container {
        margin: 30px 0 15px;
        text-align: center;
    }
    
    .btn-load-more {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 90%;
        max-width: 280px;
    }
    
    /* Footer */
    .footer {
        padding: 35px 0 15px;
        margin-top: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-bottom: 25px;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
        font-size: 0.85rem;
    }
    
    .footer-social {
        gap: 12px;
        justify-content: center;
    }
    
    .footer-social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .footer-bottom {
        padding-top: 18px;
        font-size: 0.8rem;
        text-align: center;
    }
    
    /* About Page */
    .about-hero {
        min-height: 250px;
        margin-top: 140px;
    }
    
    .about-hero-content {
        padding: 30px 15px;
    }
    
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .about-hero-content .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-main {
        padding: 40px 0;
    }
    
    .about-section {
        padding: 40px 15px;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-icon {
        display: none;
    }
    
    .section-center-title {
        font-size: 1.6rem;
        margin-bottom: 35px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .coverage-list h3 {
        font-size: 1.3rem;
    }
    
    .styled-list li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .telegram-section {
        padding: 40px 20px;
        margin: 40px 0;
        border-radius: 15px;
    }
    
    .telegram-icon-large {
        font-size: 3.5rem;
    }
    
    .telegram-content h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .telegram-content p {
        font-size: 1rem;
    }
    
    .telegram-features {
        flex-direction: column;
        gap: 20px;
        margin: 30px 0;
    }
    
    .feature-item {
        flex-direction: row;
        gap: 15px;
    }
    
    .feature-item i {
        font-size: 2rem;
    }
    
    .btn-telegram {
        font-size: 1rem;
        padding: 12px 30px;
        width: 100%;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-card {
        padding: 30px 20px;
    }
    
    .why-card i {
        font-size: 2.5rem;
    }
    
    .why-card h3 {
        font-size: 1.2rem;
    }
    
    .connect-section {
        padding: 40px 15px;
    }
    
    .connect-section h2 {
        font-size: 1.8rem;
    }
    
    .connect-section p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .social-connect-btn {
        padding: 20px 30px;
        min-width: auto;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .social-connect-btn i {
        font-size: 2.5rem;
    }
    
    .social-connect-btn div {
        text-align: center;
    }
    
    .social-connect-btn strong {
        font-size: 1.1rem;
    }
    
    .social-connect-btn span {
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .main-nav {
        padding: 8px 12px;
    }
    
    .company-logo .logo-text {
        font-size: 13px;
    }
    
    .nav-item {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .hero-section {
        margin-top: 165px;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .stat-card h3 {
        font-size: 0.8rem;
    }
    
    .stat-card p {
        font-size: 0.7rem;
    }
    
    .stat-card i {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .search-section h2 {
        font-size: 1.1rem;
    }
    
    .card-content h3 {
        font-size: 0.95rem;
    }
    
    .news-desc {
        font-size: 0.8rem;
    }
    
    .news-source {
        font-size: 0.7rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 300px;
    }
    
    .about-hero {
        min-height: 250px;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -30px;
    }
}

/* Print Styles */
@media print {
    nav, .social-links, .hero-buttons, .search-section, .footer {
        display: none;
    }
    
    .hero-section {
        margin-top: 0;
    }
    
    .card {
        page-break-inside: avoid;
    }
}

/* Article Page Styles */
.article-main {
    padding: 100px 0 60px;
    min-height: 100vh;
}

.article-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 60px;
}

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

.article-category {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.article-title {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--primary-text-color);
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: var(--secondary-text-color);
    font-size: 0.95rem;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.article-source {
    font-weight: 600;
    color: var(--accent-color);
}

.article-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.article-body {
    padding: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-text-color);
}

.article-body h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin: 30px 0 20px;
}

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

.article-body ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.article-body ul li {
    margin-bottom: 10px;
    color: var(--secondary-text-color);
}

.article-body strong {
    color: var(--primary-text-color);
    font-weight: 600;
}

.article-footer {
    padding: 40px;
    background: var(--light-bg);
    border-top: 2px solid #e0e0e0;
}

.article-share {
    margin-bottom: 40px;
}

.article-share h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.telegram-share {
    background: var(--telegram-color);
}

.telegram-share:hover {
    background: #0077b5;
    transform: translateY(-2px);
}

.twitter-share {
    background: var(--twitter-color);
}

.twitter-share:hover {
    background: #333;
    transform: translateY(-2px);
}

.copy-link {
    background: #6c757d;
}

.copy-link:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.share-btn.copied {
    background-color: #28a745 !important;
    transform: scale(1.05);
}

.article-cta {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.article-cta h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.article-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.article-navigation {
    padding: 30px 40px;
    text-align: center;
}

.related-articles {
    margin-top: 60px;
}

.related-articles h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 40px;
}

.related-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card-content {
    padding: 20px;
}

.related-category {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.related-card h3 {
    font-size: 1.2rem;
    color: var(--primary-text-color);
    line-height: 1.4;
}

/* Article Page Responsive */
@media (max-width: 768px) {
    .article-main {
        padding: 140px 0 40px;
    }
    
    .article-header {
        padding: 30px 20px 15px;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-image-wrapper {
        height: 250px;
    }
    
    .article-body {
        padding: 30px 20px;
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-footer {
        padding: 30px 20px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
    
    .article-navigation {
        padding: 20px;
    }
    
    .related-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .article-main {
        padding: 160px 0 40px;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-body {
        padding: 20px 15px;
        font-size: 0.95rem;
    }
}