/* Reset et variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e94f64;
    --secondary-color: #2daa5e;
    --text-dark: #2d2d2d;
    --text-light: #f8f8f8;
    --transition-speed: 0.3s;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-speed);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width var(--transition-speed);
}

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

.cta-button {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: transform var(--transition-speed);
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Menu Mobile */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

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

    .nav-item {
        margin: 1rem 0;
    }
}


/* BLOG 1 */
.blog-article {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    position: relative;
    margin-bottom: 3rem;
}

.article-hero {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
}

.article-meta {
    position: absolute;
    bottom: -1.5rem;
    left: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.category-tag {
    background: #2DAA5E;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
}

time {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.article-content h1 {
    font-size: 2.5rem;
    color: #2d2d2d;
    margin-bottom: 2rem;
    line-height: 1.3;
}

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

.intro {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

h2 {
    color: #E94F64;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

blockquote {
    border-left: 4px solid #2DAA5E;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

.infobox {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 1rem;
    margin: 2rem 0;
    border: 2px solid #eee;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: #2DAA5E;
    color: white;
}

.content-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    margin: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-article {
        padding: 4rem 1rem;
    }

    .article-hero {
        height: 250px;
    }

    .article-meta {
        flex-direction: column;
        left: 1rem;
        bottom: -2rem;
    }

    h1 {
        font-size: 2rem;
    }
}



/* Variables */
:root {
    --primary: #E94F64;
    --secondary: #2DAA5E;
    --dark: #2A2A2A;
    --light: #F8F9FA;
    --transition: 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

/* Navigation */
.main-nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

/* Article Styles */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.article-hero {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category {
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #444;
}

.grid-2cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.point-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--light);
    text-align: center;
    transition: transform var(--transition);
}

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

.point-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.comparison-table {
    border: 1px solid #eee;
    border-radius: 1rem;
    margin: 2rem 0;
}

.table-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--primary);
    color: white;
    padding: 1rem;
    border-radius: 1rem 1rem 0 0;
}

.table-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.styled-list {
    list-style: none;
    margin: 2rem 0;
}

.styled-list li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: var(--light);
    border-left: 4px solid var(--secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .article-container {
        padding: 6rem 1rem 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    .grid-2cols {
        grid-template-columns: 1fr;
    }

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




/* Footer */

/* Footer */
.site-footer {
    background: #2d2d2d;
    color: #ffffff;
    padding: 4rem 2rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section {
    padding: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E94F64;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

h4 {
    color: #2DAA5E;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

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

.footer-links a:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

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

.social-icons a:hover {
    background: #E94F64;
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 1.2rem;
}

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

.legal-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}