/* Hero Section */
.page-hero {
    position: relative;
    min-height: 40vh;
    width: 100%;
    background: url('../images/hero-bg.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 80px 0;
    text-align: start;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, 
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.75) 50%,
        rgba(255, 255, 255, 0.65) 100%
    );
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero .hero-content {
    color: #1B3B8C;
    max-width: 800px;
    margin-right: 0;
    position: relative;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.page-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FF4081, #1B3B8C);
    border-radius: 2px;
}

.page-hero p {
    font-size: 1.6rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #2c3e50;
    font-weight: 500;
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-top: 30px;
}

.page-hero .breadcrumb a {
    color: #1B3B8C;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-hero .breadcrumb a:hover {
    opacity: 1;
    transform: translateX(-3px);
}

.page-hero .breadcrumb .separator {
    color: #1B3B8C;
    opacity: 0.5;
}

.page-hero .breadcrumb .current {
    color: #1B3B8C;
    opacity: 0.7;
    font-weight: 500;
}

.hero-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 2;
}

@media (max-width: 992px) {
    .page-hero {
        padding: 60px 0;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .page-hero p {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 35vh;
        padding: 50px 0;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 1.2rem;
    }

    .page-hero .breadcrumb {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-hero {
        min-height: 30vh;
        padding: 40px 0;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .page-hero .breadcrumb {
        font-size: 0.9rem;
    }
}

/* About Content Section */
.about-content {
    padding: 80px 0;
    background: #fff;
}

.about-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    text-align: start;
    margin-bottom: 60px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Values Section */
.values-section {
    margin: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.value-card {
    background: rgba(27, 59, 140, 0.02);
    border-radius: 20px;
    padding: 30px;
    text-align: start;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-card h3 {
    color: #1B3B8C;
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.value-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #FF4081, #1B3B8C);
    border-radius: 2px;
}

.value-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-card ul li {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-inline-end: 20px;
    position: relative;
}

.value-card ul li::before {
    content: '•';
    inset-inline-end: 0;
    color: #1B3B8C;
    opacity: 0.7;
    font-size: 1.2rem;
}

/* Goals Section */
.goals-section {
    margin: 80px 0;
    text-align: start;
}

.goals-section h2 {
    color: #1B3B8C;
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.goals-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #FF4081, #1B3B8C);
    border-radius: 2px;
}

.goals-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.goals-list li {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.8;
    padding-inline-end: 25px;
    position: relative;
}

.goals-list li::before {
    content: '•';
    inset-inline-end: 0;
    color: #1B3B8C;
    opacity: 0.7;
    font-size: 1.2rem;
}

/* Mission Section */
.mission-section {
    margin: 80px 0;
    text-align: start;
    background: rgba(27, 59, 140, 0.02);
    padding: 40px;
    border-radius: 20px;
}

.mission-section h2 {
    color: #1B3B8C;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.mission-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #FF4081, #1B3B8C);
    border-radius: 2px;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-inline-end: 25px;
    position: relative;
}

.mission-list li::before {
    content: '•';
    inset-inline-end: 0;
    color: #1B3B8C;
    opacity: 0.7;
    font-size: 1.2rem;
}

/* Purpose Section */
.purpose-section {
    margin: 80px 0;
    text-align: start;
}

.purpose-section h2 {
    color: #1B3B8C;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.purpose-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #FF4081, #1B3B8C);
    border-radius: 2px;
}

.purpose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.purpose-list li {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-inline-end: 25px;
    position: relative;
}

.purpose-list li::before {
    content: '•';
    inset-inline-end: 0;
    color: #1B3B8C;
    opacity: 0.7;
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .goals-list {
        grid-template-columns: 1fr;
    }

    .value-card h3,
    .goals-section h2,
    .mission-section h2,
    .purpose-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 60px 0;
    }

    .about-text p {
        font-size: 1rem;
    }

    .value-card {
        padding: 25px;
    }

    .value-card h3 {
        font-size: 1.3rem;
    }

    .value-card ul li,
    .goals-list li,
    .mission-list li,
    .purpose-list li {
        font-size: 1rem;
    }

    .goals-section h2,
    .mission-section h2,
    .purpose-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .value-card {
        padding: 20px;
    }

    .mission-section {
        padding: 30px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
    }
} 