/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 90px;
}

.logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 40px;
    background: linear-gradient(135deg, #e8b4b8 0%, #d4a5a9 100%);
    border-radius: 2px;
}

.logo h1 {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: -8px;
    letter-spacing: -1px;
}

.logo .tagline {
    font-size: 0.8rem;
    color: #95a5a6;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 20px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.1) 0%, rgba(212, 165, 169, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: #2c3e50;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e8b4b8 0%, #d4a5a9 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 80%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    min-width: 260px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 15px;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 16px 24px;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.1) 0%, rgba(212, 165, 169, 0.1) 100%);
    transition: width 0.3s ease;
}

.dropdown-menu a:hover::before {
    width: 100%;
}

.dropdown-menu a:hover {
    color: #2c3e50;
    transform: translateX(8px);
    background: transparent;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 16px 50px 16px 20px;
    border: 2px solid rgba(232, 180, 184, 0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    width: 280px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
}

.search-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.search-input:focus {
    outline: none;
    border-color: #e8b4b8;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.2);
    transform: translateY(-2px);
}

.search-btn {
    position: absolute;
    right: 8px;
    background: linear-gradient(135deg, #e8b4b8 0%, #d4a5a9 100%);
    border: none;
    padding: 12px;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(232, 180, 184, 0.3);
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(232, 180, 184, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.hamburger:hover {
    background: rgba(232, 180, 184, 0.1);
    transform: scale(1.05);
}

.bar {
    width: 26px;
    height: 3px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Main Content */
.main-content {
    margin-top: 90px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.1) 0%, transparent 50%);
    transform: rotate(15deg);
    opacity: 0.7;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #e8b4b8 0%, #d4a5a9 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(232, 180, 184, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 180, 184, 0.4);
}

.hero-image {
    flex: 1;
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-image img {
    max-width: 90%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
    position: relative;
    letter-spacing: -1px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.2) 0%, rgba(212, 165, 169, 0.2) 100%);
    border-radius: 50%;
    z-index: -1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #e8b4b8 0%, #d4a5a9 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(232, 180, 184, 0.3);
}

/* Categories Section */
.categories {
    padding: 6rem 0;
    background-color: #fefefe;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.05) 0%, rgba(212, 165, 169, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(232, 180, 184, 0.3);
}

.category-image {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.category-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover .category-image::after {
    opacity: 1;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-content {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.category-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.category-card:hover .category-content h3 {
    color: #1a202c;
}

.category-content p {
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

.category-link {
    display: inline-flex;
    align-items: center;
    color: #e8b4b8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.1) 0%, rgba(212, 165, 169, 0.1) 100%);
    border: 1px solid rgba(232, 180, 184, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8b4b8 0%, #d4a5a9 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.category-link:hover::before {
    left: 0;
}

.category-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.category-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 180, 184, 0.3);
}

.category-link:hover::after {
    transform: translateX(4px);
}

/* Featured Articles Section */
.featured {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 50%, #e2e8f0 100%);
    position: relative;
}

.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M50 50l25-25v50l-25-25zm-25 25l25-25h-50l25 25z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f7fafc;
    position: relative;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.featured-card {
    grid-column: span 2;
    display: flex;
    min-height: 450px;
    border-radius: 28px;
}

.featured-card .article-image {
    flex: 1.2;
    position: relative;
}

.featured-card .article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.article-image {
    height: 240px;
    overflow: hidden;
}

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

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

.article-content {
    padding: 2rem;
}

.article-category {
    display: inline-block;
    background: #f7fafc;
    color: #718096;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-excerpt {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.article-date {
    color: #a0aec0;
    font-size: 0.85rem;
    font-weight: 400;
}

.read-more {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: #2d3748;
}

/* New Featured Articles Design */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: #718096;
    font-size: 1.1rem;
    margin-top: 1rem;
    font-weight: 400;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.featured-article-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.featured-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.main-featured {
    min-height: 500px;
}

.secondary-featured {
    min-height: 240px;
}

.featured-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.featured-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.featured-category {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-content {
    margin-top: auto;
}

.featured-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-featured .featured-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.featured-excerpt {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 1rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.secondary-featured .featured-excerpt {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    opacity: 0.8;
}

.featured-date,
.read-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.read-time::before {
    content: "•";
    margin-right: 0.3rem;
}

/* Article Page Styles - New Modern Layout */
.article-page {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    min-height: 100vh;
}

.article-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M30 30l15-15v30l-15-15zm-15 15l15-15h-30l15 15z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.article-header .container {
    position: relative;
    z-index: 2;
}

.article-header .article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.article-category {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-date {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 400;
}

.article-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-excerpt {
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: center;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.article-hero-image {
    margin: -2rem 0 4rem;
    position: relative;
    z-index: 3;
}

.article-hero-image img {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    display: block;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.article-content-wrapper {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.article-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.article-content p:first-child {
    font-size: 1.3rem;
    font-weight: 500;
    color: #4a5568;
    padding-left: 1rem;
    border-left: 4px solid #667eea;
    margin-bottom: 2.5rem;
}

.article-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 3rem 0 1.5rem;
    line-height: 1.2;
    position: relative;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.article-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2d3748;
    margin: 2.5rem 0 1.2rem;
    line-height: 1.3;
}

.article-content ul,
.article-content ol {
    margin: 2rem 0;
    padding-left: 0;
}

.article-content li {
    background: #f8fafc;
    margin-bottom: 0.8rem;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border-left: 3px solid #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.article-content li:hover {
    background: #edf2f7;
    border-left-color: #667eea;
}

.article-image {
    margin: 3rem -1rem;
    text-align: center;
}

.article-image img {
    width: calc(100% + 2rem);
    max-width: none;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-size: 0.95rem;
    color: #718096;
    font-style: italic;
    margin-top: 1rem;
    padding: 0 1rem;
    text-align: center;
}

.article-footer {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.article-share {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #f1f5f9;
}

.article-share h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-weight: 600;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.share-btn:hover::before {
    left: 100%;
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5dbf);
    color: white;
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.share-btn.pinterest {
    background: linear-gradient(135deg, #bd081c, #8b0000);
    color: white;
}

.share-btn.email {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #bdc3c7;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #e8b4b8 0%, #d4a5a9 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 180, 184, 0.3);
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e8b4b8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #e8b4b8;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 80px;
    }

    .logo h1 {
        font-size: 1.8rem;
    }

    .logo .tagline {
        font-size: 0.7rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 16px 24px;
        border-radius: 16px;
        margin: 0 20px;
    }

    .search-container {
        display: none;
    }

    .main-content {
        margin-top: 80px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .featured-card {
        grid-column: span 1;
        flex-direction: column;
        min-height: auto;
    }

    /* New Featured Articles Mobile Styles */
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .main-featured {
        min-height: 350px;
    }

    .secondary-featured {
        min-height: 200px;
    }

    .featured-overlay {
        padding: 1.5rem;
    }

    .main-featured .featured-title {
        font-size: 1.5rem;
    }

    .featured-title {
        font-size: 1.2rem;
    }

    /* Article Page Mobile Styles - New Layout */
    .article-header {
        padding: 2rem 0 2rem;
    }

    .article-header h1 {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .article-excerpt {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .article-hero-image img {
        height: 300px;
        max-width: 95%;
    }

    .article-content {
        padding: 0 1rem;
    }

    .article-content-wrapper {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .article-content p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .article-content p:first-child {
        font-size: 1.15rem;
    }

    .article-content h2 {
        font-size: 1.8rem;
        margin: 2rem 0 1rem;
    }

    .article-content h2::before {
        left: -0.5rem;
        width: 3px;
        height: 1.5rem;
    }

    .article-content h3 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.8rem;
    }

    .article-image {
        margin: 2rem -0.5rem;
    }

    .article-image img {
        width: calc(100% + 1rem);
        height: 250px;
    }

    .article-footer {
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
    }

    .article-tags {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .tag {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .social-share {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .share-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .category-grid,
    .article-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-card,
    .category-card {
        margin: 0 10px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        min-width: 100%;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    .categories,
    .featured {
        padding: 3rem 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-card,
.category-card {
    animation: fadeInUp 0.6s ease forwards;
}

.article-card:nth-child(2) {
    animation-delay: 0.1s;
}

.article-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Article Page Styles - Completely New Design */
.article-page {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: #fafbfc;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Article Header */
.article-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-category {
    background: white;
    color: #4a5568;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.article-date {
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    color: #4a5568;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.read-time {
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    color: #4a5568;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.article-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2d3748;
    text-align: center;
}

.article-lead {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hero Image */
.article-hero {
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.article-hero img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Main Content */
.article-content {
    background: white;
    border-radius: 25px;
    padding: 4rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.article-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
}

.content-section {
    margin-bottom: 4rem;
    position: relative;
}

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

.section-number {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.content-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #2d3748;
    margin-bottom: 2rem;
}

.content-highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-left: 5px solid #667eea;
    padding: 2rem;
    border-radius: 0 20px 20px 0;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.content-highlight::before {
    content: '✨';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    opacity: 0.3;
}

.content-list {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 1px solid #e2e8f0;
    counter-reset: list-counter;
}

.content-list h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-list ul {
    list-style: none;
    padding: 0;
}

.content-list li {
    position: relative;
    padding: 1rem 0 1rem 3rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d3748;
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    position: absolute;
    left: 0;
    top: 1rem;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.content-image {
    margin: 4rem 0;
    text-align: center;
    position: relative;
}

.content-image img {
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.content-image:hover img {
    transform: translateY(-5px);
}

.image-caption {
    font-size: 1rem;
    color: #718096;
    margin-top: 1.5rem;
    font-style: italic;
    background: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Article Footer */
.article-footer {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.article-tags {
    margin-bottom: 3rem;
}

.tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.article-share {
    border-top: 2px solid #e2e8f0;
    padding-top: 2.5rem;
}

.article-share h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.share-btn:hover::before {
    left: 100%;
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #64b5f6);
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}

.share-btn.pinterest {
    background: linear-gradient(135deg, #bd081c, #e53e3e);
    box-shadow: 0 8px 25px rgba(189, 8, 28, 0.3);
}

.share-btn.email {
    background: linear-gradient(135deg, #4a5568, #718096);
    box-shadow: 0 8px 25px rgba(74, 85, 104, 0.3);
}

.share-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Product Page Styles */
.product-intro {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #e8b4b8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(230, 230, 230, 0.3);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-card.featured .product-image {
    height: 100%;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #e8b4b8;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.product-rating-stars {
    color: #f39c12;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e8b4b8;
    margin-bottom: 1rem;
}

.product-description {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 1.5rem;
}

.product-features h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    color: #5a6c7d;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.product-features li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 0.5rem;
}

.product-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pros, .cons {
    padding: 1rem;
    border-radius: 8px;
}

.pros {
    background: rgba(39, 174, 96, 0.1);
}

.cons {
    background: rgba(231, 76, 60, 0.1);
}

.pros h5, .cons h5 {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.pros h5 {
    color: #27ae60;
}

.cons h5 {
    color: #e74c3c;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li, .cons li {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.btn-primary {
    background: linear-gradient(135deg, #e8b4b8 0%, #d4a5a9 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 180, 184, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #5a6c7d;
    border: 1px solid #e6e6e6;
}

.btn-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.buying-guide {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.buying-guide h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.guide-section h3 {
    color: #34495e;
    margin-bottom: 1rem;
}

.guide-section ul {
    list-style: none;
    padding: 0;
}

.guide-section li {
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.comparison-table {
    margin-bottom: 3rem;
}

.comparison-table h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: #2c3e50;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 500;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e6e6e6;
    color: #5a6c7d;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Category Page Specific Styles */
.category-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.category-hero-content h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-hero-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

.category-content {
    padding: 2rem 0;
}

.content-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #e6e6e6;
    background: white;
    color: #5a6c7d;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover, .filter-btn.active {
    background: #e8b4b8;
    color: white;
    border-color: #e8b4b8;
}

.sort-dropdown select {
    padding: 8px 16px;
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    background: white;
    color: #5a6c7d;
    font-size: 0.9rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(230, 230, 230, 0.3);
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-image {
    height: 220px;
    overflow: hidden;
}

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

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

.content-info {
    padding: 1.5rem;
}

.content-category {
    display: inline-block;
    background: rgba(232, 180, 184, 0.1);
    color: #e8b4b8;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.content-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.content-info p {
    color: #7f8c8d;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.content-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-date, .content-rating {
    color: #95a5a6;
    font-size: 0.85rem;
}

.content-rating {
    color: #f39c12;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn, .pagination-number {
    padding: 10px 15px;
    border: 1px solid #e6e6e6;
    background: white;
    color: #5a6c7d;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination-btn:hover, .pagination-number:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.pagination-number.active {
    background: #e8b4b8;
    color: white;
    border-color: #e8b4b8;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn:disabled:hover {
    background: white;
    transform: none;
}

.pagination-dots {
    color: #95a5a6;
    padding: 0 0.5rem;
}

/* Responsive Design for Articles and Products */
@media (max-width: 1024px) {
    .article-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-sidebar {
        position: static;
        order: -1;
    }

    .product-card.featured {
        grid-column: span 1;
        display: block;
    }

    .guide-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .article-page, .product-page {
        padding: 1rem;
    }

    .article-title, .product-title {
        font-size: 2rem;
    }

    .article-hero-image img {
        height: 250px;
    }

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

    .product-actions {
        flex-direction: column;
    }

    .product-pros-cons {
        grid-template-columns: 1fr;
    }

    .content-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-buttons {
        justify-content: center;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table table {
        min-width: 600px;
    }
}

/* About Page Styles */
.about-hero, .contact-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.about-hero h1, .contact-hero h1 {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-hero p, .contact-hero p {
    font-size: 1.3rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content, .contact-content {
    padding: 4rem 0;
}

.about-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.values-section, .team-section, .expertise-section, .commitment-section {
    margin-bottom: 4rem;
}

.values-section h2, .team-section h2, .expertise-section h2, .commitment-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(230, 230, 230, 0.3);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e8b4b8 0%, #d4a5a9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(230, 230, 230, 0.3);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e8b4b8;
}

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

.team-member h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-role {
    color: #e8b4b8;
    font-weight: 500;
    margin-bottom: 1rem !important;
}

.team-member p {
    color: #7f8c8d;
    line-height: 1.6;
}

.expertise-content {
    max-width: 900px;
    margin: 0 auto;
}

.expertise-content > p {
    font-size: 1.2rem;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.expertise-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #e8b4b8;
}

.expertise-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.expertise-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content > p {
    font-size: 1.2rem;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.commitment-content ul {
    list-style: none;
    padding: 0;
}

.commitment-content li {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #e8b4b8;
    color: #5a6c7d;
    line-height: 1.6;
}

.commitment-content strong {
    color: #2c3e50;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-form-section h2, .contact-info-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(230, 230, 230, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e8b4b8;
    box-shadow: 0 0 0 3px rgba(232, 180, 184, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #e8b4b8 0%, #d4a5a9 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 180, 184, 0.3);
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(230, 230, 230, 0.3);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8b4b8 0%, #d4a5a9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 1rem;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details p {
    color: #5a6c7d;
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

.contact-details small {
    color: #95a5a6;
    font-size: 0.85rem;
}

.social-contact {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.social-contact h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.social-contact p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.social-contact .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-contact .social-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #5a6c7d;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.social-contact .social-link:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-contact .social-link i {
    width: 20px;
    margin-right: 12px;
    font-size: 1.2rem;
}

.social-contact .social-link.facebook:hover { color: #3b5998; }
.social-contact .social-link.instagram:hover { color: #e4405f; }
.social-contact .social-link.twitter:hover { color: #1da1f2; }
.social-contact .social-link.pinterest:hover { color: #bd081c; }
.social-contact .social-link.youtube:hover { color: #ff0000; }

.faq-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(230, 230, 230, 0.3);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.faq-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* LATAM Article New Layout Styles */
.latam-hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 48, 135, 0.8) 0%,
        rgba(0, 86, 179, 0.7) 25%,
        rgba(25, 118, 210, 0.6) 50%,
        rgba(13, 71, 161, 0.75) 75%,
        rgba(0, 48, 135, 0.85) 100%
    );
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
}

.article-meta-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.meta-info {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.publish-date, .read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-top: 3rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5);
}

.cta-button.primary i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Article Content Styles */
.intro-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.lead-paragraph {
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: center;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.article-main-content {
    background: white;
    position: relative;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-column {
    position: relative;
}

.article-body {
    position: relative;
}

.content-section {
    margin-bottom: 5rem;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-number {
    font-size: 4rem;
    font-weight: 900;
    color: #e2e8f0;
    line-height: 1;
    min-width: 100px;
}

.section-info {
    flex: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.section-content {
    margin-left: 120px;
}

.content-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.highlight-quote {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-left: 5px solid #ff6b35;
    padding: 2.5rem;
    border-radius: 0 20px 20px 0;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    opacity: 0.3;
}

.highlight-quote blockquote {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2d3748;
    font-style: italic;
}

.content-figure {
    margin: 4rem 0;
    text-align: center;
    position: relative;
}

.content-figure img {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.content-figure:hover img {
    transform: translateY(-10px);
}

.content-figure figcaption {
    font-size: 1rem;
    color: #718096;
    margin-top: 1.5rem;
    font-style: italic;
    background: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .latam-hero-section {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .article-meta-hero {
        flex-direction: column;
        gap: 1rem;
    }
    
    .meta-info {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-content {
        margin-left: 0;
    }
    
    .section-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .content-text {
        font-size: 1.1rem;
    }
    
    .lead-paragraph {
        font-size: 1.2rem;
    }
    
    .content-grid {
        padding: 2rem 1rem;
    }
}

/* Responsive Design for About and Contact Pages */
@media (max-width: 1024px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .about-hero h1, .contact-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p, .contact-hero p {
        font-size: 1.1rem;
    }

    .values-grid, .team-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-text h2, .values-section h2, .team-section h2, .expertise-section h2, .commitment-section h2, .faq-section h2 {
        font-size: 2rem;
    }

    .contact-form-section h2, .contact-info-section h2 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .social-contact .social-links {
        gap: 0.5rem;
    }
}