body {
    margin: 0;
    font-family: 'Lora', serif;
    background-color: #1A1A1A;
    background-image: linear-gradient(to right, #404040 1px, transparent 1px);
    background-size: 20px 20px;
    color: #ffffff;
    line-height: 1.8;
}
.navbar {
    background-color: #000000;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}
.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    text-align: center;
    max-width: 1200px;
}
.navbar li {
    margin: 0 15px;
}
.navbar a {
    color: #90EE90;
    text-decoration: none;
    font-size: 1.1em;
    letter-spacing: 0.5px;
}
.navbar a:hover {
    text-decoration: underline;
}
header {
    background-color: #228B22;
    padding: 30px 20px;
    text-align: center;
}
header img.logo {
    max-width: 180px;
    margin-bottom: 15px;
    border-radius: 50%;
}
header h1 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #ffffff;
}
header p {
    margin: 10px 0 0;
    font-size: 1.2em;
    color: #90EE90;
}
section {
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}
h2 {
    font-family: 'Playfair Display', serif;
    color: #228B22;
    font-size: 2.2em;
    text-align: center;
    border-bottom: 3px solid #228B22;
    padding-bottom: 15px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}
.service-grid, .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.service-item, .testimonial-item {
    background-color: #111111;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #228B22;
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}
.service-item:hover, .testimonial-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(34, 139, 34, 0.3);
}
.price {
    font-size: 1.8em;
    color: #90EE90;
    font-weight: bold;
    margin-top: 15px;
}
ul {
    list-style: none;
    padding: 0;
    max-width: 400px;
    margin: 20px auto;
}
ul li {
    background: #111111;
    margin: 15px 0;
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid #228B22;
    font-size: 1.1em;
}
ul li a {
    color: #90EE90;
    text-decoration: none;
}
ul li a:hover {
    text-decoration: underline;
}
form.schedule-form {
    max-width: 450px;
    margin: 30px auto;
    background: #111111;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #228B22;
}
.form-group {
    margin: 15px 0;
}
form label {
    display: block;
    margin-bottom: 8px;
    color: #90EE90;
    font-weight: bold;
}
form input {
    width: 100%;
    padding: 10px;
    margin: 0;
    border: 2px solid #228B22;
    border-radius: 6px;
    background-color: #000000;
    color: #ffffff;
    font-size: 1em;
    box-sizing: border-box;
}
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
.checkbox-label {
    font-weight: bold;
    margin-bottom: 5px;
    white-space: nowrap;
}
.checkbox-cell {
    border: 2px solid #228B22;
    padding: 5px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 24px;
    width: 24px;
}
.checkbox-group input[type="checkbox"] {
    margin: 0;
}
.checkbox-group label {
    margin: 0;
    display: none;
}
.validation-note {
    font-size: 0.9em;
    margin-top: 5px;
    color: #90EE90;
    text-align: center;
    display: none;
}
form button {
    background: linear-gradient(45deg, #228B22, #90EE90);
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s ease, transform 0.3s ease;
    width: 100%;
}
form button:hover {
    background: linear-gradient(45deg, #1a6a1a, #70b070);
    transform: scale(1.05);
}
form button:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
}
.form-message {
    color: #90EE90;
    text-align: center;
    margin-top: 10px;
    font-size: 0.9em;
}
footer {
    background-color: #228B22;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    font-size: 1em;
    border-top: 1px solid #404040;
}
.social-links {
    margin-top: 10px;
}
.social-links i {
    color: #90EE90;
    margin: 0 10px;
}
.social-links a:hover i {
    opacity: 0.8;
}
.faq-list {
    max-width: 600px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 15px;
}
.faq-question {
    color: #228B22;
    cursor: pointer;
    padding: 10px;
    background-color: #111111;
    border: 2px solid #228B22;
    border-radius: 5px;
}
.faq-answer {
    display: none;
    padding: 10px;
    background-color: #111111;
    border-left: 4px solid #228B22;
    margin-top: 5px;
}
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.gallery-video {
    width: 100%;
    height: auto;
    border: 2px solid #228B22;
    border-radius: 8px;
}
.map-container {
    text-align: center;
    margin: 20px 0;
}
.home-video {
    width: 100%;
    height: auto;
    max-width: 800px; /* Limit max width for desktop */
    margin: 20px auto; /* Center with margin */
    border: 2px solid #228B22;
    border-radius: 8px;
    display: block; /* Ensure block-level for centering */
    aspect-ratio: 16 / 9; /* Maintain aspect ratio */
}
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    .service-grid, .testimonial-grid, .video-gallery {
        grid-template-columns: 1fr;
    }
    .navbar ul {
        flex-direction: column;
        text-align: center;
    }
    .navbar li {
        margin: 5px 0;
    }
    form.schedule-form {
        padding: 15px;
        max-width: 100%;
    }
    .form-group {
        margin: 10px 0;
    }
    .checkbox-group {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .checkbox-label {
        margin-right: 0;
        margin-bottom: 5px;
        text-align: center;
    }
    .checkbox-cell {
        min-height: 24px;
        width: 24px;
    }
    .social-links i {
        font-size: 24px;
        margin: 5px 0;
    }
    .social-links a {
        display: block;
        margin: 5px 0;
    }
    .faq-list {
        max-width: 100%;
    }
    .gallery-video {
        max-width: 100%;
    }
    .map-container iframe {
        width: 100%;
        max-width: 400px;
    }
    .home-video {
        max-width: 100%; /* Full width on mobile */
        max-height: 300px; /* Limit height to fit mobile viewport */
    }
}
@media (max-width: 480px) {
    .navbar {
        padding: 3px 5px;
    }
    .navbar a {
        font-size: 0.9em;
    }
    .gallery-video {
        max-width: 100%;
    }
    .home-video {
        max-height: 200px; /* Tighter height for smaller screens */
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
section {
    animation: fadeIn 1s ease-out;
}