/* About Us Page Card-based Layout */

/* Ensure listings-container (footer container) is centered like other pages */
.listings-container {
    max-width: 1200px;
    margin: 0 auto;
}


.content-wrapper {
    min-height: 0;
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

/* Base Card Styles */
.about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.card-header {
    padding: 25px 30px 0 30px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 0;
}

.card-header h3 {
    margin: 0 0 20px 0;
    font-size: 1.4rem;
    color: #2d3748;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Card Content */
.card-content {
    padding: 25px 30px 30px 30px;
    text-align: left;
}

.card-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Specific Card Styling */
.who-we-are-card {
    border-left-color: #3182ce;
}

.who-we-are-card .card-header {
    background: linear-gradient(135deg, #3182ce10, #3182ce05);
}

.values-card {
    border-left-color: #38a169;
}

.values-card .card-header {
    background: linear-gradient(135deg, #38a16910, #38a16905);
}

.why-started-card {
    border-left-color: #ed8936;
}

.why-started-card .card-header {
    background: linear-gradient(135deg, #ed893610, #ed893605);
}

.timeline-card {
    border-left-color: #805ad5;
}

.timeline-card .card-header {
    background: linear-gradient(135deg, #805ad510, #805ad505);
}

.future-plans-card {
    border-left-color: #e53e3e;
}

.future-plans-card .card-header {
    background: linear-gradient(135deg, #e53e3e10, #e53e3e05);
}

/* List Styling */
.card-content ul,
.card-content ol {
    margin: 15px 0;
    padding-left: 20px;
}

.card-content li {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 1rem;
}

.values-list li {
    position: relative;
    list-style: none;
    padding-left: 25px;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
    font-size: 1.1rem;
}

.issues-list li {
    position: relative;
    list-style: none;
    padding-left: 25px;
}

.issues-list li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #ed8936;
    font-size: 1rem;
}

.different-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.different-title {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 15px;
}

.different-list li {
    position: relative;
    list-style: none;
    padding-left: 25px;
}

.different-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: bold;
    font-size: 1.1rem;
}

.timeline-list li {
    position: relative;
    list-style: none;
    padding-left: 25px;
}

.timeline-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.plans-list li {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 1rem;
}



/* Responsive Design */
@media (max-width: 768px) {
    .about-us-container {
        padding: 15px;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .cards-grid {
        gap: 20px;
    }
    
    .about-card {
        border-radius: 12px;
    }
    
    .card-header {
        padding: 20px 25px 0 25px;
    }
    
    .card-content {
        padding: 20px 25px 25px 25px;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .card-content p,
    .card-content li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about-us-container {
        padding: 10px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .card-header {
        padding: 15px 20px 0 20px;
    }
    
    .card-content {
        padding: 15px 20px 20px 20px;
    }
}
