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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #E91E63;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #C2185B;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #E91E63;
    line-height: 1;
    margin: 0;
}
.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #E91E63;
    line-height: 1;
    margin: 0;
}

.logo a {
    color: inherit;
}

.logo .subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    color: #666;
    display: block;
    letter-spacing: 0.1em;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    color: #E91E63;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #C2185B;
    background-color: rgba(233, 30, 99, 0.1);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link i {
    font-size: 20px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #E91E63;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn:focus {
    outline: none;
}

/* Navigation */
.navigation {
    background: #E91E63;
    color: white;
    padding: 0;
}

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

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 1rem 1.25rem;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background: #E91E63;
    color: white;
}

.btn-primary:hover {
    background: #C2185B;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #E91E63;
    border: 2px solid #E91E63;
}

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

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.text-block {
    margin-bottom: 2rem;
}

.text-block h3 {
    color: #E91E63;
    margin-bottom: 1rem;
}

.text-block p {
    color: #555;
    line-height: 1.7;
}

.stats {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #E91E63;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* News Section */
.news {
    padding: 4rem 0;
    background: #f9f9f9;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-item.featured {
    grid-row: span 2;
}

.news-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-image {
    position: relative;
    overflow: hidden;
}

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

.news-item.featured .news-image img {
    height: 300px;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #E91E63;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.news-item.featured .news-content h3 {
    font-size: 1.5rem;
}

.news-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1rem;
}

.news-link {
    color: #E91E63;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #C2185B;
}

.news-cta {
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #E91E63;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #E91E63;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #333;
    color: #ccc;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: #E91E63;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 0.7rem;
    color: #999;
    display: block;
    letter-spacing: 0.1em;
}

.footer-description {
    color: #999;
    line-height: 1.6;
}

.footer-links {
    flex-shrink: 0;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.footer-column a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #E91E63;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #999;
    font-size: 0.85rem;
}

/* Article Styles */
.breadcrumb {
    background: #f9f9f9;
    padding: 1rem 0;
    margin-top: 120px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #666;
}

.breadcrumb span {
    color: #999;
    margin: 0 0.5rem;
}

.article-header {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.article-category {
    display: inline-block;
    background: #E91E63;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.article-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.article-meta {
    color: #999;
    font-size: 0.95rem;
}

.separator {
    margin: 0 0.5rem;
}

.article-main {
    padding: 4rem 0;
}

.article-content {
    display: block;
    width: 100%;
}

.article-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-image {
    margin: 2rem 0;
    max-width: 100%;
    height: auto;
    display: block;
}


.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.article-image figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-intro {
    font-size: 1.2rem;
    color: #555;
    font-weight: 400;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #E91E63;
}

.article-text h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 2.5rem 0 1rem;
}

.article-text p {
    margin-bottom: 1.5rem;
}

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

.article-text li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #555;
    border-left: 4px solid #E91E63;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: #f9f9f9;
    border-radius: 0 8px 8px 0;
}

.article-conclusion {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    border-left: 4px solid #E91E63;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 140px;
}

.sidebar-section {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.author-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.author-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.author-info h4 {
    color: #E91E63;
    margin-bottom: 0.5rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.related-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.related-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.related-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.related-content time {
    font-size: 0.8rem;
    color: #999;
}

.newsletter-signup p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 0.75rem;
    background: #E91E63;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #C2185B;
}

/* More Articles Section */
.more-articles {
    padding: 4rem 0;
    background: #f9f9f9;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.article-card .article-image {
    margin: 0;
}

.article-card .article-image img {
    height: 200px;
}

.article-card .article-content {
    padding: 1.5rem;
}

.article-card .article-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.article-card .article-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.article-card .article-meta {
    font-size: 0.8rem;
    color: #999;
}

.article-card .read-time {
    margin-left: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

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

    .news-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

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

@media (max-width: 768px) {
    .header-content {
        padding: 0.75rem 0;
    }

    .social-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #E91E63;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navigation.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
    }

    .nav-link {
        padding: 1rem 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .news-item.featured {
        grid-column: span 1;
    }

    .footer-links {
        margin-top: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .breadcrumb {
        margin-top: 100px;
    }

    .article-header h1 {
        font-size: 2.5rem;
    }

    .article-subtitle {
        font-size: 1.1rem;
    }

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

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

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

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .about-content {
        gap: 1.5rem;
    }

    .stats {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .article-header {
        padding: 2rem 0;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-text {
        font-size: 1rem;
    }

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

    blockquote {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Smooth transitions */
* {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Focus states for accessibility */

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Scroll indicators */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #E91E63;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C2185B;
}

.contact-form {
    max-width: 600px;
    margin: 2rem 0;
    padding: 2.5rem 2rem;
    background-color: #ffffff;
    border-left: 4px solid #e61b72;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    font-family: 'Helvetica Neue', sans-serif;
}

.contact-form h2 {
    font-size: 24px;
    color: #e61b72;
    margin-bottom: 1.5rem;
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    background-color: #fdfdfd;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #e61b72;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form button {
    background-color: #e61b72;
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    background-color: #c91563;
}
