.about-section {
    padding: 60px;
    margin: 50px auto;
    max-width: 900px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-section:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    max-width: 300px;
    display: flex;
    justify-content: center;
}

.key-maker-image {
    width: 100%;
    border-radius: 10px;
    border: 4px solid #f1c40f;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-details {
    flex: 2;
}

.about-details h3 {
    font-size: 28px;
    font-weight: 600;
    color: #16a085;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

.about-details p {
    font-size: 18px;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.about-details ul {
    list-style-type: square;
    padding-left: 25px;
    margin-bottom: 20px;
}

.about-details ul li {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 8px;
}

.about-details p strong {
    color: #2c3e50;
    font-weight: 700;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-header h2 {
        font-size: 32px;
    }

    .about-details h3 {
        font-size: 24px;
    }

    .about-details p {
        font-size: 16px;
    }

    .key-maker-image {
        width: 80%;
    }
}


.about-section {
    padding: 60px;
    margin: 50px auto;
    max-width: 900px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.about-section:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; 
}

.about-image {
    flex: 1;
    max-width: 300px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.key-maker-image {
    width: 100%;
    border-radius: 10px;
    border: 4px solid #f1c40f;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-details {
    flex: 2;
    max-width: 550px;
}

.about-details h3 {
    font-size: 28px;
    font-weight: 600;
    color: #16a085;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}



.contact-span{
    color: white;
}
.about-details p {
    font-size: 18px;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.about-details ul {
    list-style-type: square;
    padding-left: 25px;
    margin-bottom: 20px;
}

.about-details ul li {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 8px;
}

.about-details p strong {
    color: #2c3e50;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Adjust the about content layout */
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    /* Adjust the font size for the header */
    .about-header h2 {
        font-size: 32px;
    }

    /* Adjust the font size for the About section heading */
    .about-details h3 {
        font-size: 24px;
    }

    .about-details p {
        font-size: 16px;
    }

    /* Adjust image size */
    .key-maker-image {
        width: 80%;
    }

   
    .about-details {
        text-align: center;
        margin-top: 20px;
    }
}

/* Further adjustments for very small screens (e.g., small mobile phones) */
@media (max-width: 480px) {
    /* Reduce font sizes even more for small screens */
    .about-header h2 {
        font-size: 28px;
    }

    .about-details h3 {
        font-size: 22px;
    }

    .about-details p {
        font-size: 14px;
    }

    /* Image size adjustments */
    .key-maker-image {
        width: 90%;
    }

    /* Adjust margin and padding for smaller devices */
    .about-content {
        gap: 20px; /* Reduce the gap between items */
    }

    .about-details ul li {
        font-size: 16px;
    }
}
