body {
    background-color: cornsilk;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 70px;
    color: #333;
    line-height: 1.6;
}
header {
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.navbar {
    display: flex;
    align-items: center;
    padding: 0 5%;
    height: 65px;
}
.nav-link {
    text-decoration: none;
    color: #444;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
}
.nav-link:hover {
    background-color: #add8e6;
    color: #8B4513;
}
.nav-link.active-page, .btn-primary-nav {
    background-color: #007bff !important;
    color: white !important;
    font-weight: bold;
}
.form-container {
    max-width: 480px;
    width: 90%;
    margin: 50px auto;
    padding: 35px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    gap: 12px;
}
.form-logo {
    width: 70px;
    height: auto;
}
.form-container h2 {
    margin: 0;
    text-align: center;
    color: #222;
    font-size: 1.75rem;
    font-weight: 700;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
    font-size: 14px;
}
.form-control {
    width: 100% !important;
    padding: 12px 15px;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus {
    border-color: #8B4513;
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.15);
}
.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #8B4513 !important;
    color: white !important;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.submit-btn:hover {
    background-color: #703810 !important;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}
.main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}
.main-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}
.brand-name {
    color: #8B4513;
}
.lead-text {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}
.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-bottom: 5px solid #8B4513; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.info-card:hover {
    transform: translateY(-8px);
}
.gallery-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 60px;
}
.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}
.gallery-item:hover {
    transform: scale(1.02);
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.gallery-text {
    height: 60px; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #fff;
    font-weight: bold;
}
footer {
    background-color: white;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
}
.footer-content p {
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.8;
}
.footer-logo {
    width: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1); 
}
