/* Beliefs & Values Page Specific Styles */

/* Hero Section */
.beliefs-hero {
    min-height: 450px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    min-height: 450px;
}

.hero-image-section {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #242424;
}

.hero-title {
    color: #fff;
    font-size: 70px;
    font-weight: 900;
    margin: 0;
    text-align: center;
}

.hero-text-section {
    background-color: #508fae;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 76px;
}

.hero-text-section h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.4;
    margin: 0;
}

/* What We Believe Section */
.what-we-believe {
    background-color: #fff;
    padding: 76px 20px;
}

.section-title {
    font-size: 46px;
    font-weight: 900;
    color: #242424;
    text-align: center;
    margin-bottom: 60px;
}

.belief-item {
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.belief-item h3 {
    font-size: 28px;
    font-weight: 900;
    color: #508fae;
    margin-bottom: 15px;
}

.belief-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.belief-item strong {
    font-weight: 700;
}

/* More Details Section */
.more-details {
    background-color: #f2ede8;
    padding: 56px 20px 76px;
}

.more-details h2 {
    font-size: 36px;
    font-weight: 900;
    color: #242424;
    margin-bottom: 25px;
}

.more-details p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}

.more-details a {
    color: #185b8f;
}

.more-details a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
    text-align: center;
    justify-content: center;
}

.btn-white {
    background-color: #fff;
    color: #242424;
    border-color: #242424;
}

.btn-white:hover {
    background-color: #f0f0f0;
}

/* Footer */
.site-footer {
    background-color: #242424;
    color: #fff;
    padding: 56px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 900;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.footer-section p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section > h3:first-child {
    font-size: 34px;
    color: #fff;
    font-weight: 500;
}

.footer-section > h3:first-child strong {
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #fff;
    font-weight: 700;
}

.footer-links a:hover {
    color: #508fae;
}

.footer-bottom {
    background-color: #131313;
    padding: 30px 0;
    text-align: center;
}

.footer-logo {
    width: 139px;
    max-width: 100%;
    height: auto;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: #535353;
}

.social-links a:hover svg {
    fill: #508fae;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-text-section {
        padding: 50px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-text-section h2 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .belief-item h3 {
        font-size: 24px;
    }
    
    .belief-item p {
        font-size: 16px;
    }
    
    .more-details h2 {
        font-size: 30px;
    }
    
    .more-details p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-text-section {
        padding: 40px 20px;
    }
    
    .hero-text-section h2 {
        font-size: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section > h3:first-child {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-text-section h2 {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .belief-item h3 {
        font-size: 20px;
    }
    
    .belief-item p {
        font-size: 15px;
    }
    
    .more-details h2 {
        font-size: 24px;
    }
    
    .more-details p {
        font-size: 15px;
    }
}