body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

header {
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
    padding: 1.5rem 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 99;
    animation: fadeInDown 1s cubic-bezier(0.4,0,0.2,1);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* Ensure logo scales properly */
.logo img {
  height: 40px;
  max-width: 100%;
}

/* Toggle icon styling */
.menu-icon {
  display: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

/* Show toggle on medium and small screens */
@media (max-width: 992px) {
  .menu-icon {
    display: block;
  }
}

nav a {
    text-decoration: none;
    color: #23272f;
    margin-left: 2rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
    position: relative;
}
nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #AA5227 0%, #ffae42 100%);
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -2px;
}
nav a:hover {
    color: #AA5227;
}
nav a:hover::after {
    width: 100%;
}

.section-card {
    padding: 60px 10% 40px;
    background: #fdfdfd;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 60px 10%;
    background-color: #f9f9f9;
    text-align: center;
}

/* Hamburger styles */
#menu-toggle {
    display: none;
}
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #AA5227;
}
.nav-links {
    display: flex;
    gap: 20px;
}

.feature-card {
    flex: 1 1 220px;
    max-width: 300px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
}
.feature-card i {
    font-size: 36px;
    color: #AA5227;
    margin-bottom: 15px;
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    height: 225px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
}
.testimonial-author {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #AA5227;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
}
.contact-form button {
    background: linear-gradient(90deg, #23272f 0%, #AA5227 100%);
    color: white;
    padding: 12px 20px;
    font-weight: bold;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.contact-form button:hover {
    background: linear-gradient(90deg, #AA5227 0%, #23272f 100%);
}

footer {
    text-align: center;
    padding: 40px 10% 20px;
    background-color: #23272f;
    color: #fff;
}
.footer-social a {
    margin: 0 10px;
    color: #fff;
    font-size: 20px;
    transition: color 0.3s;
}
.footer-social a:hover {
    color: #AA5227;
}
.footer-links a {
    margin: 0 15px;
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
}
.footer-links a:hover {
    color: #fff;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    nav {
        text-align: center;
        display: flex;
        align-items: center;
        margin-top: 15px;
        font-size: 16px;
    }
    .section-card,
    .features {
        padding: 50px 5%;
    }
    .feature-card {
        flex: 1 1 45%;
        max-width: 100%;
    }
    .testimonial-card {
        margin-bottom: 30px;
    }
    .contact-form {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {

    h1, h2, h3 {
        font-size: 1.5rem !important;
    }
    .lead {
        font-size: 1rem;
    }
    .feature-card {
        flex: 1 1 100%;
    }
    .testimonial-card {
        font-size: 0.95rem;
    }
    nav a {
        margin-left: 0;
        padding: 10px 0;
        font-size: 16px;
    }
    .contact-form label {
        font-size: 0.9rem;
    }
    footer {
        padding: 30px 5% 20px;
    }
    .footer-links {
        flex-direction: column;
    }
    .footer-links a {
        margin: 5px 0;
    }
}
