body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Cookie Popup Styles */
#cookiePopup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    color: #fff;
    font-size: 0.9em;
}
#cookiePopup h3 {
    color: #ffc107;
    margin: 0 0 10px;
    font-size: 1.2em;
}
#cookiePopup p {
    margin: 0 0 15px;
}
#cookiePopup a {
    color: #ffc107;
    text-decoration: underline;
}
#cookiePopup a:hover {
    color: #fff;
}
#cookiePopup button {
    background: linear-gradient(45deg, #ffc107, #ffca28);
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#cookiePopup button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.7);
}
@media (max-width: 600px) {
    #cookiePopup {
        bottom: 10px;
        left: 10px;
        right: 10px;
        font-size: 0.8em;
    }
    #cookiePopup button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header#about {
    background-image: url('images/herobackground2med.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 150px 20px;
    color: #ffc107;
    font-weight: bold;
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        -3px 0px 0 #000,
        3px 0px 0 #000,
        0px -3px 0 #000,
        0px 3px 0 #000;
    animation: fadeIn 1s ease-in;
}

header#about h1 {
    font-size: 2.5em;
    margin: 0;
}

header#about p {
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0 0;
    text-transform: uppercase;
}

nav {
    background: black;
    padding: 15px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav img {
    max-width: 250px;
    animation: bounce 2s infinite;
}

nav a {
    color: #ffc107;
    margin: 0 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #fff;
    text-shadow: 0 0 10px #ffc107;
}

/* Hamburger and Nav Menu */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5em;
    color: #ffc107;
}

.nav-menu {
    display: inline-block;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #333;
        padding: 15px;
        text-align: center;
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }
    .nav-menu.active {
        display: block;
        transform: translateX(0);
    }
    .nav-menu a, .dropdown {
        display: block;
        margin: 10px 0;
    }
    .dropdown-menu {
        position: static;
        background-color: #444;
        box-shadow: none;
    }
    .dropdown-menu a {
        font-size: 1em;
        padding: 10px 15px;
    }
    .close-menu {
        display: block;
        background: none;
        border: none;
        color: #ffc107;
        font-size: 1.2em;
        padding: 10px;
        cursor: pointer;
        text-align: right;
        width: 100%;
    }
    .menu-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    .nav-menu.active + .menu-backdrop {
        display: block;
    }
}

@media (min-width: 769px) {
    .close-menu {
        display: none;
    }
    .menu-backdrop {
        display: none;
    }
    .dropdown {
        position: relative;
        display: inline-block;
    }
    .dropdown-menu {
        display: none;
        position: absolute;
        background-color: #333;
        min-width: 160px;
        box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
        z-index: 1000;
    }
    .dropdown:hover .dropdown-menu, .dropdown-menu.active {
        display: block;
    }
    .dropdown-menu a {
        color: #ffc107;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        font-size: 0.9em;
    }
    .dropdown-menu a:hover, .dropdown-menu a:focus {
        background-color: #ffca28;
        color: #000;
    }
}

.section {
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 1s ease-out;
}

.section h2 {
    color: #ffc107;
    font-size: 2.5em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}

.section a {
    color: #ffc107;
    text-decoration: none;
}

.section a:hover {
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.services-grid ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.services-grid li {
    margin: 10px 0;
}

.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide img {
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.5);
    transition: transform 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.05);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.5);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

.faq-item {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ffc107;
    border-radius: 5px;
}

.faq-item h3 {
    color: #ffca28;
    margin: 0 0 10px;
    font-size: 1.2em;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial cite {
    color: #ffc107;
    font-weight: bold;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border: 2px solid #ffc107;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #fff;
    outline: none;
}

.contact-form button {
    background: linear-gradient(45deg, #ffc107, #ffca28);
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.7);
}

footer {
    background: #333;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

footer a {
    color: #ffc107;
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header#about {
        padding: 80px 20px;
    }
    header#about h1 {
        font-size: 1.8em;
    }
    header#about p {
        font-size: 1em;
    }
    .section {
        padding: 30px 20px;
        margin: 10px;
    }
    .carousel {
        max-width: 100%;
    }
    .carousel-slide img {
        max-width: 100%;
        height: 250px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    .section {
        padding: 20px 10px;
        margin: 5px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .carousel-slide img {
        height: 200px;
    }
    .gallery img {
        max-width: 100%;
    }
    .contact-form input, .contact-form textarea {
        padding: 10px;
        font-size: 0.9em;
    }
    .contact-form button {
        padding: 10px 20px;
        font-size: 1em;
    }
    footer a {
        display: block;
        margin: 5px 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}