/* About Overlay */

.about-overlay{
background-color:black;
opacity:0.5;
height:100%;
width:100%;
position:absolute;
top:0;
}

/* About Page Specific Styles */
.about-hero {
    height: 60vh;
    min-height: 760px;
    position: relative;
    background: url('../images/about-bg.jpg') no-repeat top center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.about-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blueprint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="0.5"/></svg>');
    background-size: 40px 40px;
    opacity: 0.5;
}

.familiar-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.concept-box {
    background-color: var(--light-gray);
    padding: 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 4px solid var(--secondary);
}

.concept-box-blue {
    background-color: #0c1c3a;
    padding: 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 4px solid var(--secondary);
}

.concept-inner {
    padding: 2rem;
    border: 1px solid rgba(10, 26, 58, 0.1);
}

.concept-inner p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    text-align: center;
    margin: 0;
}

.concept-inner-blue p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: white;
    text-align: center;
    margin: 0;
}

.dont-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.dont-list {
    max-width: 800px;
    margin: 0 auto;
}

.dont-item {
    display: flex;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(10, 26, 58, 0.1);
}

.dont-item:last-child {
    border-bottom: none;
}

.dont-icon {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 1.5rem;
    line-height: 1;
}

.think-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.think-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.think-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-top: 4px solid var(--secondary);
}

.think-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-cta {
    padding: 4rem 0;
    background-color: var(--light-gray);
    border-top: 1px solid rgba(10, 26, 58, 0.1);
    border-bottom: 1px solid rgba(10, 26, 58, 0.1);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content p {
    font-size: 1.2rem;
    margin: 0;
    color: var(--primary);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .think-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-grid {
        grid-template-columns: 1fr;
    }
    
    .concept-box {
        margin-top: 2rem;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .think-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
}