
    /* Media Page Specific Styles */
    .hero {
        padding: 150px 0;
        background: var(--gradient-primary);
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('https://img.freepik.com/free-photo/business-people-meeting-office_53876-25060.jpg') center/cover;
        opacity: 0.1;
        animation: zoomInOut 20s infinite alternate;
    }

    @keyframes zoomInOut {
        from { transform: scale(1); }
        to { transform: scale(1.1); }
    }

    .hero-badge {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        color: white;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 500;
        display: inline-block;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: var(--transition);
    }

    .hero-badge:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    .featured-news {
        padding: 100px 0;
        background: var(--light-bg);
        position: relative;
        overflow: hidden;
    }

    .featured-news::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-secondary);
    }

    .featured-news-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        height: 100%;
    }

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

    .featured-news-image {
        position: relative;
        padding-top: 56.25%; /* 16:9 aspect ratio */
    }

    .featured-news-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .featured-news-card:hover .featured-news-image img {
        transform: scale(1.1);
    }

    .featured-news-content {
        padding: 30px;
    }

    .featured-news-content h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .featured-news-content p {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    /* News Cards */
    .news-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        height: 100%;
    }

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

    .news-image {
        position: relative;
        padding-top: 66.67%; /* 3:2 aspect ratio */
    }

    .news-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

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

    .news-date {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--gradient-secondary);
        color: white;
        padding: 10px 15px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    }

    .news-date .day {
        font-size: 1.5rem;
        font-weight: 700;
        display: block;
        line-height: 1;
    }

    .news-date .month {
        font-size: 0.9rem;
        text-transform: uppercase;
    }

    .news-content {
        padding: 30px;
    }

    .news-content h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .news-content p {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    /* Press Release Cards */
    .press-release-card {
        background: white;
        padding: 40px;
        border-radius: 20px;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        height: 100%;
    }

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

    .press-release-date {
        color: var(--secondary-color);
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .press-release-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .press-release-card p {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    /* Gallery Section */
    .gallery-item {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
    }

    .gallery-item:hover {
        transform: translateY(-10px);
    }

    .gallery-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: var(--transition);
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        color: white;
        transform: translateY(100%);
        transition: var(--transition);
    }

    .gallery-item:hover .gallery-overlay {
        transform: translateY(0);
    }

    .gallery-overlay h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .gallery-overlay p {
        margin: 0;
        opacity: 0.8;
    }

    /* Testimonials Section */
    .testimonials {
        padding: 100px 0;
        background: var(--gradient-primary);
        color: white;
        position: relative;
    }

    .testimonial-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 40px;
        margin: 20px;
        transition: var(--transition);
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.15);
    }

    .testimonial-content {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .testimonial-author img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 3px solid var(--secondary-color);
    }

    .testimonial-author-info h4 {
        margin: 0;
        font-size: 1.2rem;
    }

    .testimonial-author-info p {
        margin: 0;
        opacity: 0.8;
        font-size: 0.9rem;
    }

    /* Newsletter Section */
    .newsletter {
        padding: 100px 0;
        background: var(--light-bg);
        position: relative;
    }

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

    .newsletter-form {
        background: white;
        padding: 40px;
        border-radius: 20px;
        box-shadow: var(--box-shadow);
        margin-top: 40px;
    }

    .newsletter-form .form-control {
        height: 50px;
        border-radius: 25px;
        padding: 0 25px;
        border: 2px solid #eee;
        transition: var(--transition);
    }

    .newsletter-form .form-control:focus {
        border-color: var(--secondary-color);
        box-shadow: none;
    }

    .newsletter-form .btn {
        height: 50px;
        padding: 0 30px;
        border-radius: 25px;
        background: var(--gradient-secondary);
        border: none;
        font-weight: 500;
        transition: var(--transition);
    }

    .newsletter-form .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-header .section-badge {
        background: var(--gradient-secondary);
        color: white;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 500;
        display: inline-block;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    }

    .section-header h2 {
        color: var(--primary-color);
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .section-header p {
        color: #666;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Common Elements */
    .read-more {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: var(--transition);
    }

    .read-more i {
        transition: var(--transition);
    }

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

    .read-more:hover i {
        transform: translateX(5px);
    }

    /* Modal Styles */
    .modal-content {
        border: none;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

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

    .btn-close {
        background-color: rgba(0, 0, 0, 0.1);
        padding: 0.5rem;
        border-radius: 50%;
        opacity: 1;
        transition: all 0.3s ease;
    }

    .btn-close:hover {
        background-color: rgba(0, 0, 0, 0.2);
        transform: rotate(90deg);
    }

    .modal-body {
        padding: 1.5rem;
    }

    .callback-form .form-floating > .form-control,
    .callback-form .form-floating > .form-select {
        height: calc(3.5rem + 2px);
        padding: 1rem 0.75rem;
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background-color: white;
        position: relative;
        z-index: 2;
        line-height: 1.5;
    }

    .callback-form .form-floating > textarea.form-control {
        height: 100px;
        padding-top: 1.5rem;
    }

    .callback-form .form-floating > label {
        padding: 1rem 0.75rem;
        z-index: 2;
        background-color: transparent;
        height: auto;
    }

    .callback-form .form-control:focus,
    .callback-form .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgba(44, 62, 80, 0.1);
        z-index: 2;
        padding-top: 1.625rem;
        padding-bottom: 0.625rem;
    }

    .callback-form .form-control:not(:placeholder-shown) {
        padding-top: 1.625rem;
        padding-bottom: 0.625rem;
    }

    .callback-form .btn-primary {
        border-radius: 12px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .callback-form .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
    }

    .callback-form .btn-primary i {
        transition: transform 0.3s ease;
    }

    .callback-form .btn-primary:hover i {
        transform: translateX(5px);
    }
