  /* Responsibility Page Styles */
    :root {
        --primary: #0056b3;
        --primary-dark: #003366;
        --accent: #00a0e1;
        --light: #f8f9fa;
        --dark: #212529;
        --text-light: #ffffff;
        --text-dark: #333333;
    }
    
    /* Hero Section */
    .responsibility-hero {
        position: relative;
        height: 80vh;
        min-height: 600px;
        background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 86, 179, 0.7)), 
                    url('../assets/MAFINA/mafina-images-pack/img4.jpg') no-repeat center center;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: var(--text-light);
        overflow: hidden;
    }
    
    .hero-conten{
        max-width: 800px;
        padding: 0 2rem;
        z-index: 2;
    }
    
    .hero-conten .hero-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .hero-conten .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
        font-weight: 300;
    }
    
   .hero-conten .hero-scroll {
        position: absolute;
        bottom: 30px;
        font-size: 1.5rem;
        animation: bounce 2s infinite;
        cursor: pointer;
    }
    
    /* Responsibility Intro */
    .responsibility-intro {
        padding: 5rem 0;
        background-color: var(--light);
    }
    
    .intro-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }
    
    .intro-content h2 {
        font-size: 2.2rem;
        color: var(--primary-dark);
        margin-bottom: 1.5rem;
    }
    
    .intro-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .location-badges {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
        flex-wrap: wrap;
    }
    
    .location-badge {
        display: flex;
        align-items: center;
        background: white;
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .location-badge i {
        color: var(--accent);
        margin-right: 0.8rem;
    }
    
    /* Health & Safety Section */
    .health-safety {
        padding: 6rem 0;
        background-color: white;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: var(--primary-dark);
        margin-bottom: 1rem;
    }
    
    .section-divider {
        width: 80px;
        height: 4px;
        background: var(--accent);
        margin: 0 auto 1.5rem;
    }
    
    .section-description {
        font-size: 1.2rem;
        color: var(--text-dark);
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hse-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }
    
    .hse-text p {
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .testimonial {
        background: var(--light);
        padding: 2rem;
        border-radius: 8px;
        margin-top: 2rem;
        position: relative;
    }
    
    .quote-icon {
        position: absolute;
        top: 20px;
        left: 20px;
        color: var(--accent);
        opacity: 0.3;
        font-size: 3rem;
    }
    
    blockquote {
        font-style: italic;
        font-size: 1.2rem;
        margin: 1rem 0 1.5rem 2rem;
        position: relative;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
    }
    
    .author-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 1rem;
    }
    
    .author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .author-info h4 {
        margin-bottom: 0.3rem;
        color: var(--primary-dark);
    }
    
    .author-info p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--text-dark);
    }
    
    .hse-image {
        position: relative;
        height: 400px;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .image-zoom {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .hse-image:hover .image-zoom {
        transform: scale(1.05);
    }
    
    .safety-stats {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        display: flex;
        justify-content: space-between;
    }
    /* Stats Container Styling */
.safety-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 86, 179, 0.9);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .safety-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 1.5rem;
    }
}
    .stat-item {
        background: rgba(0, 86, 179, 0.9);
        color: white;
        padding: 1rem;
        border-radius: 8px;
        text-align: center;
        min-width: 150px;
    }
    
    .stat-number {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .safety-culture {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }
    
    .safety-culture h3 {
        color: var(--primary-dark);
        margin-bottom: 1.5rem;
    }
    
    .safety-culture p {
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .culture-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .feature-item {
        background: var(--light);
        padding: 2rem;
        border-radius: 8px;
        text-align: center;
        transition: transform 0.3s ease;
    }
    
    .feature-item:hover {
        transform: translateY(-10px);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        background: var(--accent);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: white;
        font-size: 1.5rem;
    }
    
    .feature-item h4 {
        color: var(--primary-dark);
        margin-bottom: 0.8rem;
    }
    
    /* Environmental Section */
    .environmental-section {
        padding: 6rem 0;
        background-color: var(--light);
    }
    
    .environment-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }
    
    .environment-text p {
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .eco-features {
        margin-top: 2rem;
    }
    
    .eco-item {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .eco-item i {
        width: 40px;
        height: 40px;
        background: var(--accent);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    
    .environment-image {
        height: 400px;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .sustainability-initiatives {
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .sustainability-initiatives h3 {
        text-align: center;
        color: var(--primary-dark);
        margin-bottom: 2rem;
    }
    
    .initiatives-tabs {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .tab-header {
        display: flex;
        border-bottom: 1px solid #eee;
    }
    
    .tab-link {
        flex: 1;
        padding: 1rem;
        background: none;
        border: none;
        border-bottom: 3px solid transparent;
        font-weight: 600;
        color: var(--text-dark);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .tab-link:hover {
        color: var(--primary);
    }
    
    .tab-link.active {
        color: var(--primary);
        border-bottom: 3px solid var(--accent);
    }
    
    .tab-content {
        padding: 2rem;
    }
    
    .tab-pane {
        display: none;
    }
    
    .tab-pane.active {
        display: block;
    }
    
    .initiative-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .initiative-image {
        height: 300px;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .initiative-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .initiative-text h4 {
        color: var(--primary-dark);
        margin-bottom: 1rem;
    }
    
    .initiative-text ul {
        margin: 1rem 0;
    }
    
    .initiative-text li {
        margin-bottom: 0.5rem;
        position: relative;
        padding-left: 1.5rem;
    }
    
    .initiative-text li:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.6rem;
        width: 8px;
        height: 8px;
        background: var(--accent);
        border-radius: 50%;
    }
    
    /* CTA Section */
    .responsibility-cta {
        position: relative;
        height: 400px;
        background: url('../assets/MAFINA/mafina-images-pack/img2.jpg') no-repeat center center;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: var(--text-light);
    }
    
    .cta-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 51, 102, 0.7);
    }
    
    .cta-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 0 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .btn {
        display: inline-block;
        padding: 0.8rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .btn-primary {
        background: var(--accent);
        color: white;
        border: 2px solid var(--accent);
    }
    
    .btn-primary:hover {
        background: transparent;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    
    .btn-outline {
        background: transparent;
        color: white;
        border: 2px solid white;
    }
    
    .btn-outline:hover {
        background: white;
        color: var(--primary-dark);
        transform: translateY(-3px);
    }
    
    .btn-pulse {
        animation: pulse 2s infinite;
    }

    /* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .responsibility-cta {
        height: auto; /* Change from fixed height */
        min-height: 300px; /* Minimum height */
        padding: 3rem 1rem; /* Add padding */
    }

    .cta-content {
        max-width: 100%; /* Full width on mobile */
        padding: 0 1rem; /* Reduce side padding */
    }

    .cta-content h2 {
        font-size: 1.8rem; /* Smaller heading */
        margin-bottom: 1rem; /* Reduced spacing */
        line-height: 1.3; /* Better line height */
    }

    .cta-content p {
        font-size: 1rem; /* Smaller paragraph */
        margin-bottom: 1.5rem; /* Reduced spacing */
        line-height: 1.5; /* Better readability */
    }

    .cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 1rem; /* Reduce gap between buttons */
    }

    .btn {
        width: 100%; /* Full width buttons */
        max-width: 280px; /* Buttons don't get too wide */
        padding: 0.8rem 1rem; /* Slightly less padding */
        margin: 0 auto; /* Center buttons */
        font-size: 0.95rem; /* Slightly smaller text */
    }
}

/* Extra Small Devices (below 400px) */
@media (max-width: 400px) {
    .responsibility-cta {
        min-height: 280px;
        padding: 2rem 0.8rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
}
    
    
    /* Animations */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    @keyframes slideUp {
        from { 
            opacity: 0;
            transform: translateY(30px);
        }
        to { 
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideLeft {
        from { 
            opacity: 0;
            transform: translateX(30px);
        }
        to { 
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideRight {
        from { 
            opacity: 0;
            transform: translateX(-30px);
        }
        to { 
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes grow {
        from { transform: scaleX(0); }
        to { transform: scaleX(1); }
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-20px); }
        60% { transform: translateY(-10px); }
    }
    
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(0, 160, 225, 0.7); }
        70% { box-shadow: 0 0 0 15px rgba(0, 160, 225, 0); }
        100% { box-shadow: 0 0 0 0 rgba(0, 160, 225, 0); }
    }
    
    /* Animation Classes */
    .animate-fade-in {
        opacity: 0;
        animation: fadeIn 1s ease-out forwards;
    }
    
    .animate-delay-1 {
        animation-delay: 0.3s;
    }
    
    .animate-delay-2 {
        animation-delay: 0.6s;
    }
    
    .animate-slide-up {
        opacity: 0;
        animation: slideUp 0.8s ease-out forwards;
    }
    
    .animate-slide-left {
        opacity: 0;
        animation: slideLeft 0.8s ease-out forwards;
    }
    
    .animate-slide-right {
        opacity: 0;
        animation: slideRight 0.8s ease-out forwards;
    }
    
    .animate-grow {
        transform-origin: center;
        animation: grow 0.8s ease-out forwards;
    }
    
    .animate-bounce {
        animation: bounce 2s infinite;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
        .hse-content, 
        .environment-content,
        .initiative-content {
            grid-template-columns: 1fr;
        }
        
        .hse-image, 
        .environment-image {
            height: 300px;
            order: -1;
        }
        
        .initiative-image {
            height: 200px;
        }
    }
    
    @media (max-width: 768px) {
        .hero-conten .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-conten .hero-subtitle {
            font-size: 1.2rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .cta-buttons {
            flex-direction: column;
            gap: 1rem;
        }
        
        .tab-header {
            flex-direction: column;
        }
        
        .tab-link {
            border-bottom: none;
            border-left: 3px solid transparent;
            text-align: left;
        }
        
        .tab-link.active {
            border-bottom: none;
            border-left: 3px solid var(--accent);
        }
    }