        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
        }

        .site-header {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            left: 0;
            width: 100%;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
        }

        .site-header.dark-mode {
            background-color: #333;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 8px;
        }

        .nav-links li:not(:last-child)::after {
            content:"|";
            margin-left:15px;
}

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #2c3e50;
            text-decoration: none;
            width: 180px;
            height: auto;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 20px;
            background-image: linear-gradient(135deg, #a7c4d7, #b1f1b7);
            border-radius: 8px;
            padding: 10px 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #ff8b07;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #3498db, #33ff47);
            color: #fff;
            padding: 100px 20px;
            text-align: center;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-align: center;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
            text-align: center;
        }

        .btn {
            display: inline-block;
            background-color: #e78c3c;
            color: #fff;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn.dark-mode {
            display: inline-block;
            background-color: #e78c3c;
            color: #2b2b2b;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s;
        }

        .btn:hover {
            background-color: #ca6a0a;
        }

        /* Features Section */
        .features {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-card h3 {
            margin: 15px 0;
            color: #2c3e50;
        }

        /* Footer */
        footer {
            background-color: #2c3e50;
            color: #fff;
            text-align: center;
            padding: 30px 20px;
            margin-top: 80px;
        }

        .social {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 16px;
        }

        .social-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #e78c3c;
            color: #fff;
            text-decoration: none;
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .social-btn:hover {
            background: #ca6a0a;
            transform: translateY(-2px);
        }

        /* Services Page */
        .services-hero {
            padding: 120px 20px;
        }

        .services-hero h1 {
            font-size: 52px;
        }

        .services-intro {
            max-width: 1000px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .intro-container {
            background: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            text-align: center;
        }

        .intro-container h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 36px;
        }

        .intro-container p {
            font-size: 18px;
            color: #555;
            line-height: 1.8;
        }

        /* Benefits Section */
        .benefits {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .benefits h2 {
            text-align: center;
            color: #2c3e50;
            font-size: 36px;
            margin-bottom: 50px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 12px rgba(0,0,0,0.1);
        }

        .benefit-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .benefit-card h3 {
            color: #2c3e50;
            margin: 15px 0;
            font-size: 20px;
        }

        .benefit-card p {
            color: #666;
            font-size: 15px;
        }

        /* Service Packages Section */
        .service-packages {
            max-width: 1300px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .service-packages h2 {
            text-align: center;
            color: #2c3e50;
            font-size: 36px;
            margin-bottom: 15px;
        }

        .section-subtitle {
            text-align: center;
            color: #888;
            font-size: 18px;
            margin-bottom: 50px;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .package-card {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }

        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
        }

        .package-card.featured {
            border: 3px solid #3498db;
            transform: scale(1.02);
        }

        .package-card.featured:hover {
            transform: scale(1.02) translateY(-5px);
        }

        .package-header {
            padding: 30px 20px;
            color: #fff;
            text-align: center;
            position: relative;
        }

        /* Why Choose Us Section */
        .why-choose-us {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .why-choose-us h2 {
            text-align: center;
            color: #2c3e50;
            font-size: 36px;
            margin-bottom: 50px;
        }

        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .reason {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border-left: 4px solid #3498db;
        }

        .reason h4 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 20px;
        }

        .reason p {
            color: #666;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: #fff;
            text-align: center;
            padding: 80px 20px;
            margin: 80px 0;
        }

        .cta-section h2 {
            font-size: 40px;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-large {
            padding: 16px 40px;
            font-size: 16px;
            background-color: #e78c3c;
        }

        .btn-large:hover {
            background-color: #e78c3c;
        }

        /* Form Styling for Contact Page */
        main {
            min-height: 60vh;
        }

        .about-section {
            max-width: 900px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .about-section h2 {
            color: #2c3e50;
            font-size: 32px;
            margin: 30px 0 20px 0;
        }

        .about-section h3 {
            color: #2c3e50;
            font-size: 22px;
            margin: 25px 0 15px 0;
        }

        .about-section p {
            font-size: 16px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .about-section ul {
            margin: 20px 0 20px 20px;
            font-size: 16px;
            color: #555;
        }

        .about-section li {
            margin: 10px 0;
            list-style-type: disc;
        }

        .contact-container {
            max-width: 600px;
            margin: 60px auto;
            padding: 0 20px;
            background: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        .contact-container h2 {
            color: #2c3e50;
            font-size: 32px;
            margin-bottom: 20px;
        }

        .contact-container p {
            color: #666;
            margin-bottom: 30px;
            font-size: 16px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #2c3e50;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 15px;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
        }

        .contact-container button {
            width: 100%;
            padding: 12px;
            background-color: #ff7e39;
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }

        .contact-container button:hover {
            background-color: #ff823e;
        }

img.about-image {
    float: left;
    margin-right: 20px;
    max-width: 100%;
    height: auto;
    border-radius: 9px;
    border: 2.5px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(to right, rgb(0, 255, 106), rgb(0, 51, 255)) border-box;
}

.sam {
    border-radius: 9px;
    border: 2.5px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(to right, rgb(0, 255, 106), rgb(0, 51, 255)) border-box;
    padding: 8px;
}

.caeden {
    border-radius: 9px;
    border: 2.5px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(to right, rgb(0, 255, 106), rgb(0, 51, 255)) border-box;
    padding: 8px;
}

a {
    color: #ffa600;
    text-decoration: none;
}

/* Smooth transitions */
body,
nav,
header,
section,
footer,
button,
.card {
    transition: background-color 0.4s ease,
                color 0.4s ease,
                border-color 0.4s ease;
}

/* Dark Mode */
body.dark-mode {
    background-color: #1e1e1e;
    color: #f5f5f5;
}

body.dark-mode button {
    background-color: #2d8cff;
}

a.active {
    color: #000000;
}

.contactUs {
    text-align: center;
    margin: 60px 0;
    font-size: 30px;
}

.announcement-banner {
    background: #323232;
    color: white;
    overflow: hidden;
    white-space: nowrap;
    padding: 15px 0;
    width: 100%;
}

.announcement-text {
    display: inline-block;
    animation: scroll-banner 36s linear infinite;
    font-weight: bold;
    font-size: 15px;
}

@keyframes scroll-banner {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.announcement-text:hover {
    animation-play-state: paused;
}

/* MOBILE IMPROVEMENTS */
@media (max-width: 768px) {

    /* Make the logo scale down */
    .nav-container img {
        width: 220px;
        max-width: 90%;
        height: auto;
    }

    /* Remove the | separators on mobile */
    .nav-links li {
        width: 100%;
    }

    /* Smaller hero text */
    .hero h1,
    .services-hero h1 {
        font-size: 2rem;
    }

    .hero p,
    .services-hero p {
        font-size: 1rem;
    }

    /* Better spacing */
    .features,
    .benefits,
    .why-choose-us,
    .about-section,
    .contact-container {
        margin: 40px auto;
    }

    /* About page image */
    .about-image {
        float: none !important;
        display: block;
        width: 100%;
        margin: 0 auto 20px auto;
    }

    /* Fix announcement banner text */
    .announcement-text {
        font-size: 14px;
        animation-duration: 25s;
    }

    /* Buttons fit on small screens */
    .btn,
    .btn-large {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Contact form padding */
    .contact-container {
        padding: 25px;
    }
}

/* Hamburger Button */
.hamburger {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .nav-container img {
        width: 200px;
        height: auto;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;

        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;

        background: white;

        padding: 20px;
        gap: 15px;

        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        list-style: none;
    }
}

.page-header {
    text-align: center;
    padding: 100px 20px 50px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    color: #777;
    font-size: 1.1rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.faq-item {
    background: var(--card-color, #fff);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 24px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 22px 22px;
    line-height: 1.6;
    color: #666;
}

/* Chat Button */
#chatButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0078ff;
    color: white;
    border: none;
    padding: 15px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
    transition: .3s;
    z-index: 999;
}

#chatButton:hover {
    background: #005fcc;
    transform: scale(1.05);
}

/* Chat Window */
#chatWindow {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    height: 420px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
}

.hidden {
    display: none !important;
}

.chat-header {
    background: #0078ff;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f7f7f7;
}

.chat-footer {
    display: flex;
    border-top: 1px solid #ddd;
}

.chat-footer input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
}

.chat-footer button {
    border: none;
    background: #0078ff;
    color: white;
    padding: 12px 16px;
    cursor: pointer;
}

#navToggle {
    display: none;
}

#navToggle ~ label {
    cursor: pointer;
    font-size: xx-large;
    transform: translateY(-35%);
}

#navToggle ~ ul {
    display: flex;
    flex-direction: column;
    padding: 0px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
}

#navToggle ~ ul a {
    background-color: #333333;
    padding: 16px;
}

#navToggle ~ ul a:hover {
    background-color: #555555;
}

#navToggle:checked ~ ul {
    max-height: 350px;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    align-items: self-end;
}