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

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f6f0;
    overflow-x: hidden;
}

.article-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.disclaimer {
    background-color: #2c3e50;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.disclaimer p {
    margin: 0;
}

/* Header - Dynamic Island Style */
.header {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: dynamicIslandFloat 8s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: auto;
    min-width: 280px;
}

@keyframes dynamicIslandFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-2px) scale(1.02);
    }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    gap: 20px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px) scale(1.05);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(52, 152, 219, 0.3);
    font-weight: 600;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.2), rgba(52, 152, 219, 0.1));
    border-radius: 12px;
    z-index: -1;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

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

.hero-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    mix-blend-mode: multiply;
    filter: contrast(1.2) brightness(0.8);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.hero-star {
    font-size: 24px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #f8f6f0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.about-content {
    text-align: center;
    margin-bottom: 80px;
}

.about-text {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 40px;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.image-container.animate {
    transform: translateY(0);
    opacity: 1;
}

.image-container.image-1 {
    transition-delay: 0.2s;
}

.image-container.image-2 {
    transition-delay: 0.4s;
}

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .article-image {
    transform: scale(1.05);
}

/* Sticky CTA Section */
.sticky-cta-section {
    height: 200vh;
    position: relative;
    overflow: hidden;
}

.sticky-cta-background {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sticky-cta-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sticky-cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(0.5);
    transition: transform 0.3s ease-out;
    will-change: transform;
    border-radius: 20px;
}

.sticky-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
    opacity: 0.1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.sticky-cta-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 0, 0, 0.2),
        0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.sticky-cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 
        0 0 8px rgba(0, 0, 0, 0.7),
        0 0 16px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(0, 0, 0, 0.3),
        0 1px 5px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.sticky-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-shadow: none;
}

.sticky-cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Sticky Info Block */
.sticky-info-block {
    position: absolute;
    top: 100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.sticky-info-block .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.info-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.info-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Articles Section */
.articles-section {
    padding: 100px 0;
    background-color: white;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

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

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

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

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

.article-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.article-title {
    margin-bottom: 15px;
    text-align: center;
}

.article-title a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
    text-align: center;
}

.article-title a:hover {
    color: #3498db;
}

.article-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.article-category {
    background: #3498db;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.article-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.8rem;
    color: #7f8c8d;
}

.reading-time {
    font-weight: 500;
}

.article-views {
    font-weight: 400;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 80px 0 30px;
    position: relative;
    z-index: 0;
    margin-top: 60px;
}

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

.footer-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #ecf0f1;
    font-weight: 600;
}

.footer-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #bdc3c7;
    font-weight: 500;
}

.footer-description {
    line-height: 1.7;
    color: #bdc3c7;
    font-size: 1rem;
    max-width: 300px;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    display: inline-block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info p {
    margin-bottom: 15px;
    color: #ecf0f1;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-info strong {
    color: #3498db;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.95rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.footer-bottom p {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #333;
    font-size: 0.9rem;
}

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

.cookie-accept,
.cookie-decline,
.cookie-customize {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: #27ae60;
    color: white;
}

.cookie-accept:hover {
    background: #229954;
    transform: translateY(-2px);
}

.cookie-decline {
    background: #95a5a6;
    color: white;
}

.cookie-decline:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.cookie-customize {
    background: #3498db;
    color: white;
}

.cookie-customize:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Cookie Preferences Modal */
.cookie-preferences-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    backdrop-filter: blur(5px);
}

.cookie-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cookie-modal-content h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
}

.cookie-modal-content p {
    color: #7f8c8d;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
}

.cookie-type {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.cookie-type label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.cookie-type input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #3498db;
}

.cookie-type strong {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: block;
}

.cookie-type span {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.cookie-save,
.cookie-cancel {
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-save {
    background: #27ae60;
    color: white;
}

.cookie-save:hover {
    background: #229954;
    transform: translateY(-2px);
}

.cookie-cancel {
    background: #95a5a6;
    color: white;
}

.cookie-cancel:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #27ae60;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 15000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cookie-notification.show {
    transform: translateX(0);
    opacity: 1;
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 60px;
    background-color: white;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.legal-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
    font-style: italic;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin: 25px 0 15px;
}

.legal-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-section li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.company-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.company-info h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.company-info ul {
    list-style: none;
    padding-left: 0;
}

.company-info li {
    margin-bottom: 10px;
    padding: 5px 0;
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 10px;
    color: #555;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #ecf0f1;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.legal-footer p {
    margin-bottom: 5px;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #000000 100%);
    color: white;
    text-align: center;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-main {
    background-color: white;
}

.about-section {
    padding: 80px 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.about-content.reverse {
    direction: rtl;
}

.about-content.reverse > * {
    direction: ltr;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 300;
    text-align: center;
}

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

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.member-photo {
    height: 300px;
    overflow: hidden;
}

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

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
}

.member-role {
    color: #3498db;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.history-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #3498db;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #3498db;
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 30px;
    flex: 1;
}

.timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #000000 100%);
    color: white;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #000000 100%);
    color: white;
    text-align: center;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-main {
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px 0;
}

.form-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
}

.submit-button {
    background: #3498db;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #2980b9;
}

.contact-info-container {
    padding: 40px;
}

.contact-info-container h2 {
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 1.8rem;
    font-weight: 300;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.contact-icon {
    font-size: 2rem;
    min-width: 60px;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-details p {
    color: #555;
    margin-bottom: 5px;
}

.contact-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.company-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.company-details h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.company-info p {
    color: #555;
    margin-bottom: 10px;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

.map-section {
    padding: 80px 0;
}

.map-container {
    margin-top: 60px;
}

.map-placeholder {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    border: 2px dashed #bdc3c7;
}

.map-content {
    max-width: 400px;
    margin: 0 auto;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.map-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.map-content p {
    color: #666;
    margin-bottom: 10px;
}

.map-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.map-link:hover {
    background: #2980b9;
}

/* Article Page Styles */
.breadcrumb {
    padding: 20px 0;
    background-color: #f8f9fa;
    margin-top: 80px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #7f8c8d;
}

.breadcrumb-list a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.article-main {
    background-color: white;
    padding: 40px 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.article-category {
    background: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.article-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 300;
}

.article-excerpt {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    text-align: center;
    padding: 10px;
    margin: 0 auto;
}

.article-featured-image {
    margin: 40px 0;
    text-align: center;
}

.featured-img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-page .table-of-contents {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.article-page .table-of-contents h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.article-page .table-of-contents ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.article-page .table-of-contents li {
    margin-bottom: 10px;
}

.article-page .table-of-contents a {
    color: #3498db;
    text-decoration: none;
    font-size: 1.1rem;
}

.article-page .table-of-contents a:hover {
    text-decoration: underline;
}

.table-of-contents h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    color: #3498db;
    text-decoration: none;
    padding: 5px 0;
    display: block;
    transition: color 0.3s ease;
}

.toc-list a:hover {
    color: #2980b9;
}

.article-body {
    line-height: 1.8;
    color: #333;
}

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

.article-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    font-weight: 300;
}

.article-section h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.article-section h4 {
    color: #34495e;
    font-size: 1.2rem;
    margin: 25px 0 10px;
}

.article-section p {
    margin-bottom: 20px;
    text-align: justify;
}

.article-section ul,
.article-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

.info-box {
    background: #e8f4fd;
    border: 1px solid #3498db;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.info-box h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.info-box ul {
    margin: 0;
    padding-left: 20px;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.warning-box h4 {
    color: #856404;
    margin-bottom: 15px;
}

.step-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.step-box h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.process-steps {
    margin: 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.step-number {
    background: #3498db;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    flex-basis: 35px;
    font-size: 0.9rem;
}

.step-content {
    flex: 1;
    text-align: center;
    max-width: 400px;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 600;
}

.step-content p {
    color: #555;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

.link-box {
    background: #e8f5e8;
    border: 1px solid #27ae60;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

.link-box h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.external-link {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.external-link:hover {
    background: #229954;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tip-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.tip-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.tip-card p {
    color: #555;
    margin: 0;
    font-size: 0.9rem;
}

.faq-list {
    margin: 30px 0;
}

.faq-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.faq-item p {
    color: #555;
    margin: 0;
}

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #ecf0f1;
}

.article-tags {
    margin-bottom: 30px;
}

.article-tags h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    background: #3498db;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
}

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

.article-share h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.related-articles {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #ecf0f1;
}

.related-articles h2 {
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
}

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

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

.related-card:hover {
    transform: translateY(-10px);
}

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

.related-content {
    padding: 25px;
}

.related-content h3 {
    margin-bottom: 15px;
}

.related-content h3 a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.related-content h3 a:hover {
    color: #3498db;
}

.related-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Article Page Styles */
.article-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #000000 100%);
    color: white;
    text-align: center;
}

.article-page .article-breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

.article-page .article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.article-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.article-breadcrumb a:hover {
    color: white;
}

.article-page .article-hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Article Page Content Styles */
.article-page .article-content {
    padding: 80px 0;
    background: white;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.article-page .article-text {
    line-height: 1.8;
    color: #333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.article-page .article-main {
    background-color: white;
    padding: 40px 0;
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.article-image-featured {
    margin-bottom: 40px;
}

.featured-image {
    
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-text {
    line-height: 1.8;
    color: #333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.article-text h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin: 40px 0 20px;
    font-weight: 600;
}

.article-text h3 {
    font-size: 1.5rem;
    color: #34495e;
    margin: 30px 0 15px;
    font-weight: 600;
    text-align: center;
}

.article-text h4 {
    font-size: 1.2rem;
    color: #34495e;
    margin: 25px 0 10px;
    font-weight: 600;
}

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

.article-text ul {
    margin: 20px auto;
    padding-left: 0;
    text-align: left;
    max-width: 600px;
    list-style-position: inside;
}

.article-text li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.article-text a {
    color: #3498db;
    text-decoration: none;
}

.article-text a:hover {
    text-decoration: underline;
}

.article-page .article-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.tag {
    display: inline-block;
    background: #f8f9fa;
    color: #666;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 3px 8px 3px 0;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-article {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.related-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.related-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.related-content h4 a {
    color: #2c3e50;
    text-decoration: none;
}

.related-content h4 a:hover {
    color: #3498db;
}

.related-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Responsive Design for Articles */
@media (max-width: 768px) {
    .article-hero-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .article-text h2 {
        font-size: 1.5rem;
    }
    
    .article-text h3 {
        font-size: 1.3rem;
    }
    
    .article-text h4 {
        font-size: 1.1rem;
    }
}

/* Articles Page Styles */
.articles-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #000000 100%);
    color: white;
    text-align: center;
}

.articles-hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.articles-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.articles-main {
    background-color: white;
    padding: 80px 0;
}

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

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-10px);
}

.featured-image {
    height: 400px;
    overflow: hidden;
}

.featured-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.featured-category {
    background: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.featured-title {
    margin-bottom: 20px;
}

.featured-title a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: #3498db;
}

.featured-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.featured-stats {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.featured-read-more {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.featured-read-more:hover {
    background: #2980b9;
}

.article-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #ecf0f1;
    background: white;
    color: #555;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

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

.article-stats {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 15px;
}

.reading-time,
.article-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.load-more-container {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    background: #3498db;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.load-more-btn:hover {
    background: #2980b9;
}

.newsletter-section {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #000000 100%);
    color: white;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.newsletter-container p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 15px;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-card {
        margin-bottom: 20px;
    }
    
    .article-image-container {
        height: 250px;
    }
    
    .article-content {
        padding: 25px;
        display: flex;
        flex-direction: column;
    }
    
    .article-title a {
        font-size: 1.2rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .article-excerpt {
        text-align: center;
        flex-grow: 1;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: center;

        gap: 1px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .article-stats {
        margin-top: auto;
        padding-top: 12px;
        justify-content: center;
    }
    
    .header {
        top: 50px;
        max-width: 420px;
        min-width: 220px;
    }
    
    .header .container {
        padding: 10px 16px;
        gap: 12px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .nav-list {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .images-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 0 15px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .company-info,
    .contact-info {
        padding: 20px;
    }
    
    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
        margin-bottom: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        min-width: 60px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-card {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        padding: 30px;
    }
    
    .featured-title a {
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .header {
        top: 45px;
        max-width: 360px;
        min-width: 200px;
    }
    
    .header .container {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .nav-list {
        gap: 6px;
    }
    
    .nav-link {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .hero-content {
        padding: 0 10px;
        max-width: 95%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .sticky-cta-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .sticky-cta-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .sticky-cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .sticky-info-block .container {
        padding: 0 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .info-icon {
        font-size: 2.5rem;
    }
    
    .info-title {
        font-size: 1.3rem;
    }
}
