.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 80vh;
    padding: 40px 0;

}

.contact-left {
    flex: 1;
    max-width: 500px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
}

.contact-title {
    text-align: center;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-divider {
    border: none;
    border-top: 2px solid #fff;
    margin: 0 0 30px 0;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 18px;
}

.contact-details h4,
.contact-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p,
.contact-hours p {
    margin-bottom: 8px;

}

.contact-details a,
.contact-details a:visited {
    color: #777272;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-open-time {
    
    font-weight: 500;
}

.contact-email-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 28px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 1px;
}

.contact-email-btn:hover {
    background: #fff;
    color: #000;
}

.contact-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.contact-img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
    object-fit: cover;
}

.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    width: 100%;
    background: #000;
}

.about-content {
    /* Remove box, background, shadow, border-radius */
    padding: 40px 32px;
    max-width: 650px;
    width: 100%;
    text-align: center;
    background: transparent;
    color: #fff;
    box-shadow: none;
    border-radius: 0;
}

.about-content,
.about-content * {
    text-align: center;
    color: #fff;
}

.about-title {
    font-size: 2rem;
    font-family: 'Georgia', serif;
    color: #fff;
    margin-bottom: 10px;
}

.bold{
    color: #e65100;
}

.about-divider {
    border: none;
    border-top: 2px solid #fff;
    margin: 0 auto 30px auto;
    width: 60%;
}

.about-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: #fff;
}

.about-info p {
    font-size: 1.2rem;
    margin-bottom: 18px;
    color: #fff;
}

.about-details h4,
.about-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: #ff9800;
}

.about-details p,
.about-hours p {
    margin-bottom: 8px;
    color: #fff;
}

.about-details a,
.about-details a:visited {
    color: #ff9800;
    text-decoration: none;
    font-weight: 500;
}

.about-details a:hover {
    text-decoration: underline;
    color: #e65100;
}

.about-open-time {
    color: #ff9800;
    font-weight: 500;
}

.mid-class{
    display: flex;
    justify-content: space-evenly;
}

.experience{
    font-size: larger;
    font-weight: bolder;
}

.about-email-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 28px;
    border: 2px solid #ff9800;
    background: transparent;
    color: #ff9800;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 1px;
}

.about-email-btn:hover {
    background: #ff9800;
    color: #fff;
}

.experience{
    font-size: 4.5rem;
    color: orangered;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
    .contact-left, .contact-right {
        max-width: 100%;
        padding: 0 20px;
    }
    .contact-right {
        margin-top: 30px;
    }
}

@media (max-width: 600px) {
    .about-content {
        padding: 24px 8px;
        max-width: 100%;
    }
    .about-title {
        font-size: 1.3rem;
    }
}
