/* Hospitality Exhibition Page Styles */

/* Hero Section */
.hospitality-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.hospitality-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("/cms/images/hospitality-bg.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hospitality-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}

.hospitality-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hospitality-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hospitality-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hospitality-hero .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styles */
.hospitality-main {
    padding-top: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: #667eea;
    font-size: 2rem;
}

/* Event Purpose Section */
.event-purpose-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.purpose-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
}

/* Dynamic Purpose Article Content */
.purpose-article-content {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
    text-align: left;
}

.purpose-article-content:last-child {
    margin-bottom: 0;
}

.purpose-article-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.purpose-article-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
    line-height: 1.3;
}

.purpose-article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
}

.author-info i {
    font-size: 0.8rem;
}

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

.purpose-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
    font-weight: 500;
}

.purpose-content-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.purpose-content-text h1,
.purpose-content-text h2,
.purpose-content-text h3,
.purpose-content-text h4,
.purpose-content-text h5,
.purpose-content-text h6 {
    color: #2d3748;
    margin-top: 20px;
    margin-bottom: 10px;
}

.purpose-content-text ul,
.purpose-content-text ol {
    margin: 15px 0;
    padding-left: 20px;
}

.purpose-content-text li {
    margin-bottom: 8px;
}

.purpose-article-image {
    text-align: center;
    margin-top: 20px;
}

.purpose-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Purpose Section */
@media (max-width: 768px) {
    .purpose-article-content {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .purpose-article-title {
        font-size: 1.4rem;
    }
    
    .purpose-description {
        font-size: 1rem;
    }
}

/* Exhibition Intro Section */
.exhibition-intro-section {
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.intro-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.intro-card .card-icon i {
    color: white;
    font-size: 1.5rem;
}

.intro-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item .label {
    font-weight: 600;
    color: #4a5568;
    min-width: 120px;
}

.detail-item .value {
    color: #2d3748;
    text-align: right;
    flex: 1;
}

/* Market Potential Section */
.market-potential-section {
    padding: 80px 0;
    background: #f8fafc;
}

.market-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 5px;
}

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

.market-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 25px;
}

.market-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #4a5568;
}

.highlight-item i {
    color: #48bb78;
    font-size: 1.1rem;
}

.market-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Expand Market Section */
.expand-market-section {
    padding: 80px 0;
}

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

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

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

.expand-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.expand-card .card-icon i {
    color: white;
    font-size: 2rem;
}

.expand-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.expand-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Exhibition Profile Section */
.exhibition-profile-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.profile-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
}

/* Profile Articles Grid - Three Cards Per Row */
.profile-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

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

.profile-article-image {
    height: 200px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.profile-article-card:hover .profile-article-image img {
    transform: scale(1.05);
}

.profile-article-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.profile-article-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.3;
}

.profile-article-summary {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex: 1;
}

.profile-article-meta {
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.profile-article-meta .author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
}

.profile-article-meta .author i {
    font-size: 0.8rem;
}

.view-profile-details-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    align-self: flex-start;
}

.view-profile-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Responsive Design for Profile Articles */
@media (max-width: 1024px) {
    .profile-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

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

    .profile-article-content {
        padding: 20px;
    }
}

/* Equipment Profiles Section */
.equipment-profiles-section {
    padding: 80px 0;
}

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

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

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

.profile-image {
    height: 200px;
    overflow: hidden;
}

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

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

.profile-content {
    padding: 25px;
}

.profile-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.profile-content p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Exhibitors Section */
.exhibitors-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

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

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

.exhibitor-image {
    width: 200px;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.exhibitor-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.exhibitor-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.exhibitor-content p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: 15px;
}

.exhibitor-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Venue Section */
.venue-section {
    padding: 80px 0;
}

.venue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.venue-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.venue-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

.venue-parameters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.parameter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.parameter-label {
    font-weight: 600;
    color: #4a5568;
}

.parameter-value {
    color: #2d3748;
    font-weight: 500;
}

.venue-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Organizers Section */
.organizers-section {
    padding: 80px 0;
    background: #f8fafc;
}

.organizer-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    text-align: center;
}

.organizer-info > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: #667eea;
    font-size: 2rem;
    margin-top: 5px;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.feature-content p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Dynamic Content Section */
.dynamic-content-section {
    padding: 80px 0;
}

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

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

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

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

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

.article-content {
    padding: 25px;
}

.article-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.article-summary {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.view-details-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Modal Styles - Consistent with Exhibition Products Standard */
.hospitality-modal .modal-dialog {
    max-width: 800px;
    margin: 30px auto;
    width: 90%;
}

.hospitality-modal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.hospitality-modal .modal-header {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-bottom: none;
    padding: 2rem;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.hospitality-modal .modal-title {
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
    padding-right: 100px;
    line-height: 1.3;
}

/* Modal Controls Container */
.modal-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 8px;
}

/* Maximize/Restore Button */
.modal-maximize-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.modal-maximize-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Close Button - Same as Exhibition Products */
.hospitality-modal .close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s ease;
    opacity: 1;
    font-weight: normal;
    text-shadow: none;
    position: static;
}

.hospitality-modal .close:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    opacity: 1;
}

/* Maximized Modal Styles */
.hospitality-modal.maximized .modal-dialog {
    width: 100vw;
    height: 100vh;
    max-width: none;
    margin: 0;
    transition: all 0.3s ease;
}

.hospitality-modal.maximized .modal-content {
    height: 100vh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.hospitality-modal.maximized .modal-body {
    flex: 1;
    overflow-y: auto;
}

/* Smooth transitions for modal resize */
.hospitality-modal .modal-dialog {
    transition: all 0.3s ease;
}

.hospitality-modal .modal-content {
    transition: all 0.3s ease;
}

/* Enhanced modal controls styling */
.modal-controls button {
    margin: 0;
    padding: 0;
}

.modal-controls button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.hospitality-modal .modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-image {
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.modal-image img {
    border-radius: 12px;
    max-height: 400px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.modal-content-text {
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 25px;
}

.modal-content-text h5 {
    color: #2d3748;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
}

.modal-content-text ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.modal-content-text li {
    margin-bottom: 8px;
    color: #4a5568;
}

/* Modal supplier info styling to match exhibition-products */
.modal-supplier-info {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #f093fb;
}

.modal-supplier-info h5 {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-supplier-info h5::before {
    content: "\f095";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #f093fb;
}

.modal-supplier-info p {
    margin-bottom: 8px;
    color: #4a5568;
}

.modal-supplier-info strong {
    color: #2d3748;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hospitality-hero .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }

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

    .market-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .venue-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .exhibitor-card {
        flex-direction: column;
    }

    .exhibitor-image {
        width: 100%;
        height: 200px;
    }

    .venue-parameters {
        grid-template-columns: 1fr;
    }

    /* Responsive modal sizing */
    .hospitality-modal .modal-dialog {
        margin: 15px;
        max-width: calc(100vw - 30px);
        width: calc(100vw - 30px);
    }

    /* Responsive adjustments for maximized modal */
    .hospitality-modal.maximized .modal-header {
        padding: 1.5rem;
    }

    .hospitality-modal.maximized .modal-title {
        font-size: 1.5rem;
        padding-right: 80px;
    }

    .modal-controls {
        top: 0.75rem;
        right: 0.75rem;
    }

    .modal-maximize-btn,
    .hospitality-modal .close {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .hospitality-modal .modal-body {
        padding: 24px;
    }
}

/* Additional responsive modal sizing for smaller screens */
@media (max-width: 576px) {
    .hospitality-modal .modal-dialog {
        margin: 10px;
        max-width: calc(100vw - 20px);
        width: calc(100vw - 20px);
    }

    .hospitality-modal .modal-header {
        padding: 1.5rem;
    }

    .hospitality-modal .modal-title {
        font-size: 1.4rem;
        padding-right: 70px;
    }

    .hospitality-modal .modal-body {
        padding: 20px;
    }

    .modal-controls {
        top: 0.5rem;
        right: 0.5rem;
    }

    .modal-maximize-btn,
    .hospitality-modal .close {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* Large screen optimizations - Match Exhibition Products Standard */
@media (min-width: 1200px) {
    .hospitality-modal .modal-dialog {
        max-width: 800px;
    }
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Purpose Articles Grid - Event Purpose Section */
.purpose-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.purpose-article-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.purpose-article-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.purpose-article-icon i {
    color: white;
    font-size: 2rem;
}

.purpose-article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.purpose-article-summary {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 20px;
    flex: 1;
}

.purpose-article-meta {
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    width: 100%;
}

.purpose-article-meta .author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
}

.view-purpose-details-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.view-purpose-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Exhibition Info Articles Grid */
.exhibition-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.exhibition-info-image {
    height: 200px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.exhibition-info-card:hover .exhibition-info-image img {
    transform: scale(1.05);
}

.exhibition-info-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    color: white;
    font-size: 1.5rem;
}

.exhibition-info-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.exhibition-info-summary {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex: 1;
}

.exhibition-info-meta {
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.exhibition-info-meta .author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-size: 0.9rem;
    font-weight: 500;
}

.view-exhibition-details-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    align-self: flex-start;
}

.view-exhibition-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    color: white;
}

/* Market Articles Grid */
.market-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.market-article-image {
    height: 200px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.market-article-card:hover .market-article-image img {
    transform: scale(1.05);
}

.market-article-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.market-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.market-icon i {
    color: white;
    font-size: 1.5rem;
}

.market-article-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.market-article-summary {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex: 1;
}

.market-article-meta {
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.market-article-meta .author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 500;
}

.view-market-details-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    align-self: flex-start;
}

.view-market-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
    color: white;
}

/* Expand Articles Grid */
.expand-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.expand-article-image {
    height: 200px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.expand-article-card:hover .expand-article-image img {
    transform: scale(1.05);
}

.expand-article-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.expand-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.expand-icon i {
    color: white;
    font-size: 1.5rem;
}

.expand-article-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.expand-article-summary {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex: 1;
}

.expand-article-meta {
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.expand-article-meta .author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f59e0b;
    font-size: 0.9rem;
    font-weight: 500;
}

.view-expand-details-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    align-self: flex-start;
}

.view-expand-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    color: white;
}

/* Enhanced Responsive Design for All Dynamic Sections */
@media (max-width: 1024px) {
    .purpose-articles-grid,
    .exhibition-info-grid,
    .market-articles-grid,
    .expand-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .purpose-articles-grid,
    .exhibition-info-grid,
    .market-articles-grid,
    .expand-articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .purpose-article-card,
    .exhibition-info-content,
    .market-article-content,
    .expand-article-content {
        padding: 20px;
    }

    .exhibition-info-grid {
        grid-template-columns: 1fr;
    }

    .purpose-article-icon,
    .info-icon,
    .market-icon,
    .expand-icon {
        width: 60px;
        height: 60px;
    }

    .purpose-article-icon i,
    .info-icon i,
    .market-icon i,
    .expand-icon i {
        font-size: 1.5rem;
    }
}

/* Modern Technical Design Enhancements */
.purpose-dynamic-content,
.exhibition-dynamic-content,
.market-dynamic-content,
.expand-dynamic-content {
    position: relative;
}

.purpose-dynamic-content::before,
.exhibition-dynamic-content::before,
.market-dynamic-content::before,
.expand-dynamic-content::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.exhibition-dynamic-content::before {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.market-dynamic-content::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.expand-dynamic-content::before {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Animation Classes for Better Visibility */
.purpose-article-card,
.exhibition-info-card,
.market-article-card,
.expand-article-card {
    animation: fadeInUp 0.6s ease forwards;
}

.purpose-article-card:nth-child(2) {
    animation-delay: 0.1s;
}

.purpose-article-card:nth-child(3) {
    animation-delay: 0.2s;
}

.exhibition-info-card:nth-child(2) {
    animation-delay: 0.1s;
}

.market-article-card:nth-child(2) {
    animation-delay: 0.1s;
}

.expand-article-card:nth-child(2) {
    animation-delay: 0.1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Technical Design for Article Sections */

/* Tech Section Base Styles */
.tech-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.tech-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.tech-section:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

/* Modern Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.section-badge:hover::before {
    left: 100%;
}

.section-badge i {
    font-size: 1.1rem;
}

.section-badge span {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    position: relative;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.section-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #667eea;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

/* Tech Content Wrapper */
.tech-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Tech Article Container */
.tech-article-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.tech-article-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Article Header Tech */
.article-header-tech {
    margin-bottom: 30px;
    position: relative;
}

.tech-article-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.article-meta-tech {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.author-badge i {
    color: #667eea;
    font-size: 1.1rem;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.content-main {
    position: relative;
}

.tech-description {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400;
}

.tech-content {
    color: #2d3748;
    line-height: 1.8;
}

.content-body {
    font-size: 1rem;
}

.content-body h1, .content-body h2, .content-body h3, 
.content-body h4, .content-body h5, .content-body h6 {
    color: #1a202c;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-body p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.content-body ul, .content-body ol {
    margin-bottom: 18px;
    padding-left: 25px;
}

.content-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Content Visual */
.content-visual {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tech-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.image-container:hover .image-overlay {
    opacity: 1;
}

/* Default Content Tech */
.default-content-tech {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Info Grid Tech */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card-tech {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
}

.info-card-tech:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-icon-tech {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.card-icon-tech i {
    color: white;
    font-size: 1.5rem;
}

.info-card-tech h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
}

.details-list-tech {
    space-y: 12px;
}

.detail-item-tech {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.detail-item-tech:last-child {
    border-bottom: none;
}

.detail-item-tech .label {
    font-weight: 600;
    color: #4a5568;
    min-width: 120px;
}

.detail-item-tech .value {
    color: #2d3748;
    text-align: right;
    flex: 1;
}

/* Market Stats Tech */
.market-stats-tech {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card-tech {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.stat-card-tech::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-card-tech .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.stat-card-tech .stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.stat-card-tech .stat-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.3;
    font-size: 1.2rem;
    z-index: 1;
}

/* Market Highlights Tech */
.market-highlights-tech {
    margin-top: 30px;
}

.highlight-item-tech {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

.highlight-item-tech:last-child {
    border-bottom: none;
}

.highlight-item-tech i {
    color: #48bb78;
    font-size: 1.1rem;
    min-width: 20px;
}

.highlight-item-tech span {
    color: #4a5568;
    font-weight: 500;
}

/* Expand Grid Tech */
.expand-grid-tech {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.expand-card-tech {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.expand-card-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.5s;
}

.expand-card-tech:hover::before {
    left: 100%;
}

.expand-card-tech:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.expand-card-tech .card-icon-tech {
    margin: 0 auto 25px;
}

.expand-card-tech h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
}

.expand-card-tech p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .tech-article-container, .default-content-tech {
        padding: 25px;
        border-radius: 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tech-article-title {
        font-size: 1.8rem;
    }
    
    .market-stats-tech {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-grid, .expand-grid-tech {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .tech-article-container, .default-content-tech {
        padding: 20px;
        border-radius: 12px;
    }
    
    .section-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .tech-article-title {
        font-size: 1.5rem;
    }
    
    .tech-description {
        font-size: 1.1rem;
    }
    
    .stat-card-tech {
        padding: 25px 20px;
    }
    
    .stat-card-tech .stat-number {
        font-size: 2rem;
    }
}