/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body styles */
body {
    background-color: #ecf0f1;
    color: #333333;
    line-height: 1.6;
}

/* Container setup */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: inline-block;
}

/* Navigation styles */
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
}

nav ul li a:hover {
    border-bottom: 2px solid #e67e22;
}

/* Hamburger Menu Styling */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: 0.4s;
}

/* Make the hamburger icon appear on mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Hide the menu by default */
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #2c3e50;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    /* When the menu is active (opened), show it */
    nav.active ul {
        display: flex;
    }
}

/* Section titles */
section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Service cards */
.service-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-card {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 20px;
    width: 48%;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
}

/* Service cards on mobile */
@media (max-width: 768px) {
    .service-card {
        width: 100%;
    }

    .service-card img {
        width: 50px;
        height: 50px;
    }
}

/* Contact section */
section#contact {
    margin-top: 40px;
}

/* Footer styles */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 40px;
}

/* Consent notice */
.notice {
    background: #ffffff;
    border: 1px solid #cccccc;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.consent-script blockquote {
    font-style: italic;
    border-left: 5px solid #34495e;
    padding-left: 10px;
    margin-top: 10px;
    color: #555555;
}
