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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #e74c3c;
    --text-color: #e0e0e0;
    --bg-color: #1a1a1a;
    --white: #ffffff;
    --dark-gray: #1a1a1a;
    --light-gray: #cccccc;
    --overlay-bg: rgba(26, 26, 26, 0.95);
    --card-bg: #252525;
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.disclaimer {
    background-color: #f39c12;
    color: var(--white);
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.main-header {
    position: fixed;
    top: 50px;
    left: 20px;
    width: auto;
    background-color: rgba(26, 26, 26, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 18px 35px;
    border-radius: 0 12px 12px 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a;
    text-align: center;
    line-height: 32px;
}

.logo-icon::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.site-name {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.header-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
}

.header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;
}

.header-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-bg);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close span {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
}

.menu-close span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-close span:nth-child(2) {
    transform: rotate(-45deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--secondary-color);
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding: 0 0 80px 80px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(26, 26, 26, 1) 0%, rgba(26, 26, 26, 0.8) 20%, rgba(26, 26, 26, 0) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 80%, transparent 100%);
}

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

.hero-text h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Arial', 'Helvetica', sans-serif;
    letter-spacing: -0.5px;
    text-transform: none;
}

.hero-text p {
    font-size: 20px;
    color: #b0b0b0;
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.feature-cards-section {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

.feature-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    transition: gap 0.3s ease;
}

.feature-card {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), z-index 0.3s;
    z-index: 1;
}

.feature-card:hover {
    z-index: 10;
}

.feature-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-card-bg {
    transform: scale(1.1);
}

#featureCard1 .feature-card-bg {
    background-image: url('../images/article1.webp');
    background-color: #2a2a2a;
}

#featureCard2 .feature-card-bg {
    background-image: url('../images/article2.webp');
    background-color: #2a2a2a;
}

.feature-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.feature-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.feature-card-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    font-family: 'Arial', 'Helvetica', sans-serif;
    letter-spacing: -1px;
}

.feature-card-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.feature-card-content p {
    font-size: 18px;
    color: var(--light-gray);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.feature-card-button {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-card:hover .feature-card-button {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.feature-card-button span {
    display: block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-card-button span {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .feature-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        height: 400px;
    }

    .feature-card-content h2 {
        font-size: 32px;
    }

}

.benefits-carousel-section {
    padding: 150px 20px;
    background-color: var(--bg-color);
    position: relative;
    overflow: visible;
}

.benefits-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.red-square {
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    display: inline-block;
}

.section-label {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

.benefits-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--light-gray);
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Arial', 'Helvetica', sans-serif;
    letter-spacing: -2px;
}

.benefits-subtitle {
    font-size: 20px;
    color: var(--light-gray);
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.8;
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 100px;
    overflow: visible;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: fit-content;
    margin: 0;
}

.carousel-card {
    flex: 0 0 600px;
    min-width: 600px;
    background-color: #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(10px);
    opacity: 0.5;
    transform: scale(0.85);
    pointer-events: none;
}

.carousel-card.active {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
    z-index: 2;
}

.carousel-card.active::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -50px;
    right: -50px;
    bottom: -80px;
    background: radial-gradient(ellipse at center, rgba(231, 76, 60, 0.4) 0%, rgba(231, 76, 60, 0.25) 25%, rgba(231, 76, 60, 0.15) 50%, rgba(231, 76, 60, 0) 85%);
    border-radius: 20px;
    z-index: -1;
    pointer-events: none;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-label {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.card-quote {
    font-size: 20px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.card-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.author-role {
    font-size: 16px;
    color: var(--light-gray);
}

.card-button {
    padding: 12px 24px;
    background-color: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: center;
    margin-top: 10px;
}

.card-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
}

.card-button::after {
    content: '→';
    color: var(--secondary-color);
    font-size: 18px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.carousel-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .benefits-title {
        font-size: 36px;
    }

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

    .carousel-card {
        flex: 0 0 90%;
        min-width: 90%;
    }

    .carousel-card.active::before {
        top: -40px;
        left: -40px;
        right: -40px;
        bottom: -40px;
    }
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.articles-section {
    margin-bottom: 60px;
}

.articles-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-color);
}

/* Estilos para página de artículos con texto alineado a la izquierda */
.articles-page-content {
    background-color: var(--bg-color);
    min-height: calc(100vh - 200px);
    padding: 120px 0 80px;
}

.articles-page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: flex-start;
}

.articles-text-content {
    max-width: 900px;
    width: 100%;
    text-align: left;
}

.articles-main-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.2;
    font-family: 'Arial', 'Helvetica', sans-serif;
    letter-spacing: -1px;
}

.articles-intro {
    font-size: 20px;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 80px;
    max-width: 800px;
}

.article-item {
    margin-bottom: 80px;
}

.article-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.3;
    font-family: 'Arial', 'Helvetica', sans-serif;
    letter-spacing: -0.5px;
}

.article-description {
    font-size: 18px;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 800px;
}

.article-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .articles-page-content {
        padding: 100px 0 60px;
    }

    .articles-page-wrapper {
        padding: 0 30px;
    }

    .articles-text-content {
        max-width: 100%;
    }

    .articles-main-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .articles-intro {
        font-size: 18px;
        margin-bottom: 50px;
    }

    .article-item {
        margin-bottom: 50px;
    }

    .article-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .article-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .article-link {
        font-size: 16px;
    }
}

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

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

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.5);
}

.article-image {
    width: 100%;
    height: 200px;
    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.05);
}

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.article-content p {
    margin-bottom: 20px;
    color: var(--light-gray);
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--white);
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 20px 20px;
    margin-top: 60px;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

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

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

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section p {
    color: var(--light-gray);
    margin-bottom: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--light-gray);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 20px;
    z-index: 1003;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-consent.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.cookie-accept,
.cookie-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: var(--secondary-color);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: #c0392b;
}

.cookie-decline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-decline:hover {
    background-color: rgba(255,255,255,0.1);
}

.article-page {
    max-width: 1600px;
    margin: 0 auto;
    padding: 100px 80px 60px;
}

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

.article-header h1 {
    font-size: 42px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    color: var(--light-gray);
    font-size: 14px;
    margin-bottom: 30px;
}

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

.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
}

.article-body h2 {
    font-size: 32px;
    color: var(--text-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-body h3 {
    font-size: 24px;
    color: var(--light-gray);
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.article-body img {
    width: 100%;
    border-radius: 8px;
    margin: 30px 0;
}

.article-body ul,
.article-body ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.article-body li {
    margin-bottom: 10px;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px 60px;
}

.page-content h1 {
    font-size: 42px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.page-content h2 {
    font-size: 32px;
    color: var(--text-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 24px;
    color: var(--light-gray);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .main-header {
        position: fixed;
        top: 50px;
        left: 15px;
        width: auto;
        max-width: calc(100% - 60px);
        border-radius: 0 12px 12px 0;
        padding: 15px 20px;
    }

    .header-divider {
        display: none;
    }

    .header-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
    }

    .hero-section {
        padding: 0 20px 40px 20px;
        min-height: 500px;
    }

    .hero-text h1 {
        font-size: 32px;
        font-family: 'Arial', 'Helvetica', sans-serif;
        letter-spacing: -0.3px;
    }

    .hero-text p {
        font-size: 16px;
        color: #b0b0b0;
        font-family: 'Arial', 'Helvetica', sans-serif;
    }

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

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

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

    .article-page {
        padding: 80px 30px 40px;
    }

    .article-header h1 {
        font-size: 32px;
    }

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

    .article-body {
        font-size: 16px;
    }

    .page-content {
        padding: 80px 20px 40px;
    }

    .page-content h1 {
        font-size: 32px;
    }
}

.contact-info {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--text-color);
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--white);
}

.contact-form {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background-color: #2a2a2a;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

.submit-button {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #c0392b;
}

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .articles-section h2 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

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

