.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-hero {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--beige-white) 0%, #f0e6d2 100%);
    border-radius: 12px;
    margin-top: 1rem;
}

.about-logo h1 {
    font-family: 'Dancing Script', cursive;
    color: var(--dark-blue);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-family: 'Merriweather', serif;
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}

.about-section {
    margin-bottom: 3rem;
    padding: 1.5rem 0;
}

.about-section h2 {
    font-family: 'Merriweather', serif;
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--beige-white);
    padding-bottom: 0.5rem;
}

.about-section h3 {
    font-family: 'Merriweather', serif;
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.about-section p {
    font-family: 'Lora', serif;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-family: 'Lora', serif;
    color: #333;
}

.feature-list i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-card {
    background: var(--beige-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.value-card:hover {
    transform: translateY(-2px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.9rem;
    margin: 0;
}

.data-source {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin: 1rem 0;
}

.data-source p {
    margin: 0;
    font-size: 0.9rem;
}

.data-source a {
    color: var(--dark-blue);
    text-decoration: none;
}

.data-source a:hover {
    text-decoration: underline;
}

.contact-section {
    background: var(--beige-white);
    padding: 2rem;
    border-radius: 12px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.contact-item i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.1rem;
    width: 20px;
}

.cta-container {
    text-align: center;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0056b3 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
}

.cta-container h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-container p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #45a049;
    transform: translateY(-1px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-hero {
        padding: 1.5rem 1rem;
        margin-top: 0.5rem;
    }
    
    .about-logo h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .about-section {
        margin-bottom: 2rem;
        padding: 1rem 0;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .contact-section,
    .cta-container {
        padding: 1.5rem;
    }
    
    .cta-container h3 {
        font-size: 1.5rem;
    }
    
    .contact-info {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 0.5rem;
    }
    
    .about-logo h1 {
        font-size: 2rem;
    }
    
    .about-section h2 {
        font-size: 1.3rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
    
    .value-card {
        padding: 1rem;
    }
    
    .value-card i {
        font-size: 2rem;
    }
}

/* Add to CSS/om.css */

.clickable-title {
    cursor: pointer;
    transition: color 0.2s ease;
}

.clickable-title:hover {
    color: var(--secondary-color);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    margin: 0;
    color: var(--dark-blue);
    font-family: 'Merriweather', serif;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.modal-close:hover {
    background-color: #f0f0f0;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body p {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 1rem;
        max-height: 90vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 1rem;
    }
}

/* Add to CSS/om.css - Modal image styles */

.modal-image-container {
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.modal-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-body li {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Mobile responsiveness for modal image */
@media (max-width: 768px) {
    .modal-image {
        max-height: 150px;
    }
    
    .modal-image-container {
        margin-bottom: 1rem;
    }
}
