/* About page header styling */
.about-header {
    display: flex;
    align-items: center;
}

.about-logo-container {
    flex-shrink: 0;
}

.about-text {
    margin-left: 2rem;
}

.about-logo {
    height: 100px;
    width: auto;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2em;
}

.tech-category {
    flex: 1;
    min-width: 250px;
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    background: #f9f9f9;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.tech-list strong {
    display: block;
    margin-bottom: 0.5em;
    color: #3498db;
}

.tech-description {
    font-size: 0.9em;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2em;
}

.feature {
    background: #f9f9f9;
    padding: 1.5em;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature h3 {
    color: #3498db;
    margin-bottom: 0.5em;
}

.feature i {
    margin-right: 0.5em;
}

.post header {
    padding: 1.5em 2em !important;
    margin-bottom: 1em !important;
}

.post header h2 {
    font-size: 1em !important;
    color: #333 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
}

.post header h2:after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #3498db;
    margin-top: 0.5em;
}

.post .content {
    padding: 0 2em 2em 2em !important;
}

/* Special styling for the Our Mission section */
.mission-section {
    display: flex;
    flex-direction: column;
}

.mission-section .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 150px; 
}

.mission-section .content p {
    margin: auto 0;
}

/* Responsive adjustments */
@media (max-width: 736px) {
    .about-header {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .tech-stack {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
} 