.our-story-section {
    padding: 0 10px 0 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.col {
    flex: 1;
    padding: 15px;
}

.image-col {
    text-align: center;
}

.story-image {
    width: center; 
    /*max-width: 500px; Ensure image size does not exceed this*/
    /*aspect-ratio : 1 / 1; Keeps the 1:1 ratio*/
    /*aspect-ratio: 1 / 1; Keeps the 1:1 ratio*/
    /*object-fit: cover; Ensures images are neatly cropped*/
    box-shadow: 0 4px 20px rgba(0, 0, 3.9, 3.9);
}
.story{
    display: flex;
    flex-direction: column;
    align-items: center;
        
}
.text-col {
    max-width: 600px;
}

.text-col h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.text-col p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Responsive Design */
/* Mobile-specific styling */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .text-col h2 {
        font-size: 1.5rem;
    }

    .text-col p {
        font-size: 0.9rem;
    }

    /* For the second row, reverse the order on mobile */
    .second-row {
        display: flex;
        flex-direction: column-reverse; /* Changes the order */
    }
}

/* General styling */
body {
    font-family: Arial, sans-serif;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    background-color: #f4f4f4;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

/* Contact Info */
.contact-info {
    flex: 1;
    margin-right: 20px;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-info p, .contact-info address {
    margin-bottom: 10px;
    color: #333;
}

.contact-info address {
    font-style: normal;
}

.social-links a {
    margin-right: 10px;
    color: #333;
    font-size: 20px;
}

.social-links a:hover {
    color: #000;
}

/* Contact Form */
.contact-form {
    flex: 1;
    margin-left: 20px;
}

.form-group {
    display: flex;
    gap: 10px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        margin-left: 0;
        margin-right: 0;
    }
}
