/* Responsibility Hero Section */
.responsibility-hero {
    background: linear-gradient(rgba(0, 56, 101, 0.8), rgba(0, 56, 101, 0.8)), url('../assets/yota-images/Home/yota-img2.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
}

.responsibility-hero .hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.responsibility-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.responsibility-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsibility Intro */
.responsibility-intro {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.responsibility-intro h2 {
    font-size: 2.5rem;
    color: #003865;
    margin-bottom: 25px;
    text-align: center;
}

.responsibility-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.mission-statement {
    background: #003865;
    color: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.mission-statement blockquote {
    font-size: 1.5rem;
    font-style: italic;
    font-family: 'Merriweather', serif;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.mission-statement blockquote:before {
    content: '\201C';
    font-size: 5rem;
    position: absolute;
    left: -20px;
    top: -20px;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
}

.mission-statement p {
    text-align: right;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 0;
}

/* Responsibility Pillars */
.responsibility-pillars {
    padding: 100px 0;
    background: white;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pillar-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #00a859;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pillar-card:nth-child(2) {
    border-top-color: #0097a7;
}

.pillar-card:nth-child(3) {
    border-top-color: #ffc107;
}

.pillar-card:nth-child(4) {
    border-top-color: #e91e63;
}

.card-icon {
    font-size: 3rem;
    color: #003865;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.pillar-card ul {
    text-align: left;
    list-style: none;
}

.pillar-card ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    color: #555;
    line-height: 1.5;
}

.pillar-card ul li:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #00a859;
}

.pillar-card:nth-child(2) ul li:before {
    color: #0097a7;
}

.pillar-card:nth-child(3) ul li:before {
    color: #ffc107;
}

.pillar-card:nth-child(4) ul li:before {
    color: #e91e63;
}

/* Impact Stories */
.impact-stories {
    padding: 100px 0;
    background: #f5f8fa;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.story-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: 25px;
}

.story-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #003865;
}

.story-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: #003d82;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 86, 179, 0.2);
}

.cta-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1.5rem;
}

/* Partnerships */
/* Partnerships Section */
.partnerships-section {
    background: white;
}

.partner-slide {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 2rem;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 46, 93, 0.1);
}

.partner-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.partner-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.partner-logo img {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: var(--transition);
}

.partner-slide:hover .partner-logo img {
    filter: grayscale(0);
    opacity: 1;
}

.partner-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.partner-info p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.partnerships-text {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
    color: #6B7280;
    line-height: 1.8;
}

/* Swiper adjustments for partners */
.partners-slider {
    padding: 1rem;
    margin: 0 -1rem;
}

.partners-slider .swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.partners-slider .swiper-pagination-bullet {
    background: rgba(0, 46, 93, 0.3);
}

.partners-slider .swiper-pagination-bullet-active {
    background: var(--accent-gold);
}

@media (min-width: 768px) {
    .partners-slider {
        padding: 2rem;
        margin: 0 -2rem;
    }
    
    .partner-slide {
        padding: 2.5rem;
    }
    
    .partner-logo {
        height: 120px;
    }
    
    .partner-logo img {
        max-height: 100px;
    }
}

/* Reports */
.reports {
    padding: 100px 0;
    background: #f9f9f9;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.report-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.report-card:hover {
    transform: translateY(-10px);
}

.report-icon {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.report-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #003865;
}

.report-card p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Responsibility CTA */
.responsibility-cta {
    padding: 100px 0;
    background: url('../assets/yota-images/Home/yota-img2.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    position: relative;
}

.responsibility-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 56, 101, 0.8);
}

.responsibility-cta .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.responsibility-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.responsibility-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: #00a859;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #008e4a;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #003865;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .responsibility-hero h1 {
        font-size: 2.5rem;
    }
    
    .responsibility-hero p {
        font-size: 1rem;
    }
    
    .mission-statement blockquote {
        font-size: 1.2rem;
        padding-left: 20px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .responsibility-hero {
        padding: 120px 0 80px;
    }
    
    .responsibility-hero h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}