html {
    overflow-y: scroll;
    overscroll-behavior-y: none;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #363732;
    margin: 0;
    padding: 0;
    background-color: #f8f6f5;
}

.site-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.anchor {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1100px;
}

@media screen and (max-width: 700px) {
    .header-nav {
        display: none;
        /* Hide navigation on mobile */
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #363732;
}

nav ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding-inline-start: 0px;

}

nav ul li {
    margin-left: 1rem;
    margin-right: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

.cta-button {
    background-color: #363732;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
}

.hero-cta-button {
    background-color: #1e2c3c;
    /* background-color: #363732; */
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.main {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e2c3c;
    text-align: center;
    /* Center the section title */
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 450px;

}

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

.service h3 {
    color: #4a90e2;
    margin-top: 0;
}

.service a {
    color: #1e2c3c;
    text-decoration: none;
    font-weight: bold;
}

.info-section {
    background-color: #fff;
    border: 1px solid;
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: auto;
}

.features-container {
    display: flex;
    flex-direction: column;
    /* Stack feature items vertically */
    gap: 24px;
    /* Restore original gap between items */
    margin-bottom: 40px;
    align-items: center;
    /* Center items horizontally */
}

.feature-item {
    display: flex;
    align-items: stretch;
    /* Make children stretch to the same height */
    width: 100%;
    max-width: 1100px;
    /* Allow item to be wider to fit both boxes */
    gap: 24px;
    /* Space between the text box and the image */
    /* Remove background, padding, shadow from the main item */
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

/* Style the text/icon block like the original feature-item */
.feature-text-content {
    display: flex;
    align-items: center;
    flex-basis: 50%;
    /* Make text box take up half the space */
    min-width: 0;
    /* Prevent flex item overflow */
    /* Apply original styling */
    background-color: #fff;
    border-radius: 8px;
    padding: 56px;
    /* Original padding */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    /* Include padding in width calculation */
}

/* Add hover effect to the text box specifically */
.feature-item:hover .feature-text-content {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Remove specific layout styles for the icon container */
.feature-icon {
    color: #1e2c3c;
    flex-shrink: 0;
    /* Add display: inline-block for better control if needed */
    display: inline-flex;
    /* Helps align SVG vertically */
    vertical-align: middle;
    /* Align icon nicely with text */
    margin-right: 16px;
    /* Add space between icon and title text */
}

.feature-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #1e2c3c;

}

/* Style the image block */
.feature-image {
    display: block;
    flex-basis: 50%;
    /* Make image box take up half the space */
    min-width: 0;
    /* Prevent flex item overflow */
    height: auto;
    /* Let height be determined by content or alignment */
    object-fit: cover;
    /* Cover the area, maintain aspect ratio */
    border-radius: 8px;
    /* Match the text box corners */
    background-color: #eee;
    /* Optional: background for image area */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Add shadow to match */
}

/* --- Responsive adjustments --- */
@media screen and (max-width: 768px) {

    .feature-item,
    .feature-item:nth-child(even),
    .feature-item:nth-child(odd) {
        flex-direction: column;
        /* Stack image and text vertically */
        max-width: 520px;
        /* Revert to original max-width for stacked view */
        gap: 16px;
        /* Reduce gap for stacked view */
    }

    .feature-text-content {
        flex-basis: auto;
        /* Reset basis */
        width: 100%;
        /* Take full width */
        /* Keep original padding and styling */
    }

    .feature-image {
        flex-basis: auto;
        /* Reset basis */
        width: 100%;
        /* Take full width */
        max-height: 250px;
        /* Limit image height on mobile */
        order: 1;
        /* Consistently place image on top */
    }

    /* Remove hover transform effect on mobile */
    .feature-item:hover .feature-text-content,
    .feature-item:hover .feature-image {
        transform: none;
    }
}


/* Styles for 'Coming Soon' tag remain the same */
.coming-soon .feature-text-content,
.coming-soon .feature-image {
    /* Apply opacity to both parts */
    opacity: 0.9;
}

.soon-tag {
    font-size: 0.7rem;
    background-color: #e7e4e0;
    color: #363732;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: normal;
    vertical-align: top;
}

footer {
    background-color: #363732;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

footer a {
    color: #fff;
}


/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

/* Modal Content */
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
}


@keyframes zoom {
    from {
        transform: scale(0.1)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Make feature images clickable */
.feature-image {
    cursor: pointer;
    transition: opacity 0.3s;
}

.feature-image:hover {
    opacity: 0.9;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}