/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #f7f7f7;
}

/* CONTAINER */
.container {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* NAV */
.top-nav {
    padding: 12px 0;
}

.top-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-nav a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    font-size: 14px;
}

.top-nav a:hover {
    color: #666;
}

/* HEADER */
.section {
    padding: 60px 0;
    text-align: center;
}

.section h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section p {
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* ABOUT LAYOUT */
.about-section {
    padding: 40px 0 80px;
}

/* ✅ FIX: IMAGE ALIGNMENT (IMPORTANT CHANGE) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start; /* was center */
}

/* IMAGE */
.about-image {
    margin-top: 0; /* keeps clean alignment */
}

.about-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
}

/* TEXT */
.about-text h2 {
    margin-bottom: 16px;
    font-size: 1.6rem;
}

.about-text p {
    margin-bottom: 14px;
    color: #444;
}

/* SHADOW */
.shadow-img {
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    border-radius: 10px;
    transition: 0.3s ease;
}

.shadow-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

/* CONTACT BOX */
.contact-box {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

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

.contact-text {
    margin-bottom: 12px;
    color: #555;
}

/* EMAIL LINK */
.email-link {
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #111;
    text-decoration: underline;
    transition: 0.3s ease;
}

.email-link:hover {
    color: #333;
    transform: translateX(3px);
}

/* BUTTON GROUP */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* CONTACT BUTTON */
.contact-btn {
    display: inline-block;
    width: fit-content;
    padding: 12px 22px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #333;
    transform: translateY(-3px);
}

.phone-btn {
    background: #333;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px 0;
    background: #fff;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .button-group {
        align-items: center;
    }
}