/* style/industry-news-technology-innovations.css */
.page-industry-news-technology-innovations {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-industry-news-technology-innovations .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-industry-news-technology-innovations .hero-section {
    background: linear-gradient(135deg, #0A2342, #FFD700);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-industry-news-technology-innovations .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff; /* Đảm bảo độ tương phản cao */
    font-weight: bold;
}

.page-industry-news-technology-innovations .hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee; /* Đảm bảo độ tương phản cao */
}

.page-industry-news-technology-innovations .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-industry-news-technology-innovations .btn-primary {
    background-color: #FFD700;
    color: #0A2342; /* Màu chữ tương phản với màu nền vàng */
    margin-right: 15px;
}

.page-industry-news-technology-innovations .btn-primary:hover {
    background-color: #e6c200;
    color: #0A2342;
}

.page-industry-news-technology-innovations .btn-secondary {
    background-color: #0A2342;
    color: #FFD700; /* Màu chữ tương phản với màu nền xanh đậm */
    border: 2px solid #FFD700;
}

.page-industry-news-technology-innovations .btn-secondary:hover {
    background-color: #1a3a60;
    color: #FFD700;
    border-color: #e6c200;
}

.page-industry-news-technology-innovations .introduction-section,
.page-industry-news-technology-innovations .blockchain-section,
.page-industry-news-technology-innovations .ai-section,
.page-industry-news-technology-innovations .mobile-section,
.page-industry-news-technology-innovations .future-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-industry-news-technology-innovations .content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-industry-news-technology-innovations .content-block:nth-child(even) {
    flex-direction: column-reverse; /* Đổi thứ tự cho các phần xen kẽ */
}

.page-industry-news-technology-innovations .section-title {
    font-size: 2.5em;
    color: #0A2342;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-industry-news-technology-innovations .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-industry-news-technology-innovations p {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    text-align: justify;
    color: #333;
}

.page-industry-news-technology-innovations ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    max-width: 900px;
    text-align: left;
}

.page-industry-news-technology-innovations ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
}

.page-industry-news-technology-innovations .content-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-industry-news-technology-innovations .cta-section {
    background-color: #0A2342;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-industry-news-technology-innovations .cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-industry-news-technology-innovations .cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

.page-industry-news-technology-innovations .cta-buttons .btn {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-industry-news-technology-innovations .hero-title {
        font-size: 2.5em;
    }

    .page-industry-news-technology-innovations .hero-subtitle,
    .page-industry-news-technology-innovations p,
    .page-industry-news-technology-innovations ul li {
        font-size: 1em;
    }

    .page-industry-news-technology-innovations .section-title {
        font-size: 2em;
    }

    .page-industry-news-technology-innovations .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-industry-news-technology-innovations .cta-title {
        font-size: 2.2em;
    }

    .page-industry-news-technology-innovations .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-industry-news-technology-innovations .cta-buttons .btn {
        margin: 10px 0;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-industry-news-technology-innovations .hero-section,
    .page-industry-news-technology-innovations .introduction-section,
    .page-industry-news-technology-innovations .blockchain-section,
    .page-industry-news-technology-innovations .ai-section,
    .page-industry-news-technology-innovations .mobile-section,
    .page-industry-news-technology-innovations .future-section,
    .page-industry-news-technology-innovations .cta-section {
        padding: 40px 0;
    }

    .page-industry-news-technology-innovations .hero-title {
        font-size: 2em;
    }

    .page-industry-news-technology-innovations .section-title {
        font-size: 1.8em;
    }

    .page-industry-news-technology-innovations .cta-title {
        font-size: 1.8em;
    }

    .page-industry-news-technology-innovations .btn-primary,
    .page-industry-news-technology-innovations .btn-secondary {
        margin: 5px 0;
        width: 90%;
    }
}