body {
    font-family: 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f7;
    color: #1d1d1f;
    width: 100%;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    color: #1d1d1f;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.nobot-icon {
    height: 30px;
    width: auto;
    margin-right: 10px;
}

.nobot-text {
    font-size: 18px;
    font-weight: 600;
}

.captcha-text {
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Removed .language-selector select styles */


.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #1d1d1f;
    margin: 2px 0;
}

.container {
    width: 90%;
    margin: auto;
    padding: 20px;
    text-align: center;
}

header {
    margin-bottom: 30px;
}

h1 {
    color: #1d1d1f;
    font-size: 36px;
    font-weight: 600;
}

.tagline {
    font-style: normal;
    color: #515154;
    font-size: 20px;
    font-weight: 400;
}

.features, .about, .cta {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    -webkit-box-shadow: 1px 3px 21px 5px rgba(0, 0, 0, 0.27);
    box-shadow: 1px 3px 21px 5px rgba(0, 0, 0, 0.27);
}

.features h2, .about h2, .cta h2 {
    color: #1d1d1f;
    font-size: 28px;
    font-weight: 600;
}

.features ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.features li {
    padding: 15px;
    margin: 10px;
    background-color: rgba(241, 241, 241, 0.5);
    border-radius: 10px;
    font-size: 16px;
    flex: 1 1 300px;
    max-width: 300px;
}

.features li img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    border-radius: 8px;
    -webkit-box-shadow: 1px 3px 21px 5px rgba(0, 0, 0, 0.37);
    box-shadow: 1px 3px 21px 5px rgba(0, 0, 0, 0.37);
}

.cta-button, .copy-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0071e3;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    border:none;
    cursor: pointer;
}

.cta-button:hover, .copy-button:hover {
    background-color: #005bb5;
}

.copy-button:active, .copy-button.copy-active {
    background-color: #075900;
}

.captcha-container {
    margin-top: 30px;
}

.captcha-box {
    border: 1px solid #d2d2d7;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    display: inline-block;
    backdrop-filter: blur(10px);
    border-radius: 14px;
}

.captcha-box img {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.header-illustration, .about-illustration, .contact-illustration {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.header-illustration {
    border-radius: 8px;
    -webkit-box-shadow: 1px 3px 21px 5px rgba(0, 0, 0, 0.27);
    box-shadow: 1px 3px 21px 5px rgba(0, 0, 0, 0.27);
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger-menu {
        display: flex;
    }

    h1 {
        font-size: 28px;
    }

    .tagline {
        font-size: 16px;
    }

    .features li {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }

    h1 {
        font-size: 24px;
    }

    .tagline {
        font-size: 14px;
    }

    .features h2, .about h2, .cta h2 {
        font-size: 22px;
    }
}

/* New styles for the custom language selector */
.language-selector-container {
    position: relative;
    display: inline-block;
    z-index: 10; /* Ensure it's above other content */
}

.language-dropdown-header {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    min-width: 120px; /* Adjust as needed */
    justify-content: space-between;
}

.language-dropdown-header:hover {
    border-color: #0071e3;
}

.language-dropdown-header .flag-icon {
    width: 24px; /* Adjust flag size */
    height: 16px; /* Adjust flag size */
    margin-right: 8px;
    border: 1px solid #eee; /* Optional: add a subtle border to flags */
    box-sizing: content-box; /* Include border in size calculation */
}

.language-dropdown-header .language-name {
    flex-grow: 1;
    text-align: left;
    margin-right: 8px;
}

.dropdown-arrow {
    font-size: 10px;
}

.language-dropdown-list {
    position: absolute;
    top: 100%; /* Position below the header */
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-height: 200px; /* Limit height and add scrolling */
    overflow-y: auto;
    display: none; /* Hidden by default */
    z-index: 10; /* Ensure it's above other content */
}

.language-dropdown-list.active {
    display: block; /* Show when active */
}

.language-search-input {
    width: calc(100% - 20px); /* Adjust for padding */
    padding: 8px 10px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding in width */
    display: block; /* Take full width */
}

.language-options-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    cursor: pointer;
}

.language-option:hover {
    background-color: #f0f0f0;
}

.language-option .flag-icon {
     width: 24px; /* Adjust flag size */
    height: 16px; /* Adjust flag size */
    margin-right: 8px;
    border: 1px solid #eee; /* Optional: add a subtle border to flags */
    box-sizing: content-box; /* Include border in size calculation */
}

.language-option .language-name {
    flex-grow: 1;
}


/* Provided CSS styles */
        body {
            font-family: 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f7;
            color: #1d1d1f;
            width: 100%;
            overflow-x: hidden;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.8);
            color: #1d1d1f;
            padding: 10px 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 100;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: inherit;
        }

        /* Placeholder for a potential icon */
        .nobot-icon {
            height: 30px;
            width: auto;
            margin-right: 10px;
            /* Example: Placeholder SVG or image */
            /* background-color: #0071e3; */
            /* border-radius: 50%; */
        }

        .nobot-text {
            font-size: 18px;
            font-weight: 600;
        }

        .captcha-text {
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            list-style-type: none;
            margin: 0;
            padding: 0;
        }

        .nav-links li {
            margin-left: 20px;
        }

        .nav-links a {
            color: #1d1d1f;
            text-decoration: none;
            font-weight: 500;
        }

        .nav-links a:hover {
            text-decoration: underline;
        }

        .hamburger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            height: 21px;
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: #1d1d1f;
            margin: 2px 0;
        }

        .container {
            width: 90%;
            margin: auto;
            padding: 20px;
            text-align: center;
        }

        header {
            margin-bottom: 30px;
        }

        h1 {
            color: #1d1d1f;
            font-size: 36px;
            font-weight: 600;
        }

        .tagline {
            font-style: normal;
            color: #515154;
            font-size: 20px;
            font-weight: 400;
        }

        /* Reusing .features style for the login form container */
        .login-container {
            background-color: rgba(255, 255, 255, 0.8);
            padding: 30px; /* Increased padding for form */
            border-radius: 14px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
            -webkit-box-shadow: 1px 3px 21px 5px rgba(0, 0, 0, 0.27);
            box-shadow: 1px 3px 21px 5px rgba(0, 0, 0, 0.27);
            max-width: 400px; /* Limit form width */
            margin: 30px auto; /* Center the form container */
            text-align: left; /* Align form content to the left */
        }

        .login-container h2 {
            color: #1d1d1f;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 20px; /* Space below heading */
            text-align: center; /* Center heading */
        }

        .form-group {
            margin-bottom: 20px; /* Space between form groups */
        }

        .form-group label {
            display: block; /* Label on its own line */
            margin-bottom: 8px; /* Space below label */
            font-weight: 500;
            color: #333;
        }

        .form-group input[type="email"],
        .form-group input[type="text"],
        .form-group input[type="phone"],
        .form-group input[type="password"] {
            width: 100%; /* Full width input */
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            box-sizing: border-box; /* Include padding in width */
            font-size: 16px;
        }
        .form-group select {
            width: 100%; /* Full width select */
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            box-sizing: border-box; /* Include padding in width */
            font-size: 16px;
        }
        .cta-button, .copy-button {
            display: inline-block;
            padding: 12px 24px;
            background-color: #0071e3;
            color: #fff;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
            width: 100%; /* Make button full width in form */
            box-sizing: border-box; /* Include padding in width */
            margin-top: 10px; /* Space above button */
        }

        .cta-button:hover, .copy-button:hover {
            background-color: #005bb5;
        }

        .copy-button:active, .copy-button.copy-active {
            background-color: #075900;
        }

        .form-links {
            text-align: center; /* Center the links below the form */
            margin-top: 20px;
            font-size: 14px;
        }

        .form-links a {
            color: #0071e3;
            text-decoration: none;
            margin: 0 10px;
        }

        .form-links a:hover {
            text-decoration: underline;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: rgba(255, 255, 255, 0.8);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
            }

            .nav-links.active {
                display: flex;
            }

            .hamburger-menu {
                display: flex;
            }

            h1 {
                font-size: 28px;
            }

            .tagline {
                font-size: 16px;
            }

            .features li {
                flex: 1 1 100%;
                max-width: 100%;
            }

            .login-container {
                padding: 20px; /* Adjust padding on smaller screens */
            }
        }

        @media (max-width: 480px) {
            .container {
                width: 95%;
            }

            h1 {
                font-size: 24px;
            }

            .tagline {
                font-size: 14px;
            }

            .features h2, .about h2, .cta h2, .login-container h2 {
                font-size: 22px;
            }

            .form-group input[type="email"],
            .form-group input[type="text"],
            .form-group input[type="phone"],
            .form-group input[type="password"],
            .form-group select {
                font-size: 14px;
            }

            .cta-button {
                font-size: 14px;
                padding: 10px 20px;
            }
        }

        /* Added styles for the custom language selector - included for completeness based on previous request */
        .language-selector-container {
            position: relative;
            display: inline-block;
            z-index: 10; /* Ensure it's above other content */
        }

        .language-dropdown_header { /* Corrected class name */
            display: flex;
            align-items: center;
            padding: 8px 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            background-color: #fff;
            cursor: pointer;
            min-width: 120px; /* Adjust as needed */
            justify-content: space-between;
        }

        .language-dropdown_header:hover { /* Corrected class name */
            border-color: #0071e3;
        }

        .language-dropdown_header .flag-icon { /* Corrected class name */
            width: 24px; /* Adjust flag size */
            height: 16px; /* Adjust flag size */
            margin-right: 8px;
            border: 1px solid #eee; /* Optional: add a subtle border to flags */
            box-sizing: content-box; /* Include border in size calculation */
        }

        .language-dropdown_header .language-name { /* Corrected class name */
            flex-grow: 1;
            text-align: left;
            margin-right: 8px;
        }

        .dropdown-arrow {
            font-size: 10px;
        }

        .language-dropdown-list {
            position: absolute;
            top: 100%; /* Position below the header */
            left: 0;
            right: 0;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 5px;
            margin-top: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            max-height: 200px; /* Limit height and add scrolling */
            overflow-y: auto;
            display: none; /* Hidden by default */
            z-index: 10; /* Ensure it's above other content */
        }

        .language-dropdown-list.active {
            display: block; /* Show when active */
        }

        .language-search-input {
            width: calc(100% - 20px); /* Adjust for padding */
            padding: 8px 10px;
            margin: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box; /* Include padding in width */
            display: block; /* Take full width */
        }

        .language-options-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .language-option {
            display: flex;
            align-items: center;
            padding: 8px 10px;
            cursor: pointer;
        }

        .language-option:hover {
            background-color: #f0f0f0;
        }

        .language-option .flag-icon {
            width: 24px; /* Adjust flag size */
            height: 16px; /* Adjust flag size */
            margin-right: 8px;
            border: 1px solid #eee; /* Optional: add a subtle border to flags */
            box-sizing: content-box; /* Include border in size calculation */
        }

        .language-option .language-name {
            flex-grow: 1;
        }

        
/* The main container div wrapping the flag and input */
.form-group .intl-tel-input {
    width: 100%; /* Ensure it takes full width */
    display: table; /* Use table display to align flag and input */
    border-collapse: collapse; /* Remove space between table cells */
    overflow: hidden; /* Hides any potential overflow due to border-radius */
    border: 1px solid #ccc; /* Apply the border to the container */
    border-radius: 8px; /* Apply border radius to the container */
    box-sizing: border-box;
}

/* Style the input element inside the intl-tel-input container */
.form-group .intl-tel-input input[type="text"] {
    /* Overwrite default input/intl-tel-input styles */
    border: none; /* Remove border from the input itself as container has it */
    padding: 12px; /* Apply padding */
    font-size: 14px; /* Apply font size (already set by general rule, but explicit is fine) */
    box-sizing: border-box;
    width: 100%; /* Make input fill the remaining space (within the table cell) */
    display: table-cell; /* Make it a table cell */
    height: calc(14px + 12px + 12px); /* Approximate height based on font + padding */
    /* border-radius is applied to the container */
}

/* Style the selected flag button */
.form-group .intl-tel-input .selected-flag {
    border: none; /* Remove border as container has it */
    /* border-right: 1px solid #ccc; /* Optional: Add a subtle separator line */
    border-radius: 0; /* Remove border radius as container has it */
    padding: 0 6px 0 10px; /* Adjust padding around the flag */
    height: calc(14px + 12px + 12px); /* Match height of the input */
    box-sizing: border-box;
    display: table-cell; /* Make it a table cell */
    vertical-align: middle; /* Vertically align content */
    position: relative; /* Needed for dropdown positioning */
    background-color: transparent; /* Ensure no background */
}

 /* Style the dial code text next to the flag */
.form-group .intl-tel-input .selected-flag .iti-dial-code {
    font-size: 14px; /* Match font size */
    /* Add padding or margin here if you want space between code and number input */
     margin-left: 6px; /* Example space */
}


/* Style the dropdown list container (when open) */
.form-group .intl-tel-input .country-list {
    border-radius: 8px; /* Match container border radius */
    /* You might want to override other default styles like box-shadow, background etc. */
     box-shadow: 0 2px 5px rgba(0,0,0,0.2);
     font-size: 14px; /* Match font size for list items */
}

/* Style the search input *inside* the country dropdown */
.form-group .intl-tel-input .country-list .search {
     padding: 8px !important; /* Adjust padding for the search input within the list */
     font-size: 14px !important; /* Match font size */
     /* Add border, border-radius if desired */
     margin: 6px 12px; /* Add spacing around the search input */
     width: calc(100% - 24px) !important; /* Adjust width considering margin */
     box-sizing: border-box !important;
     border: 1px solid #ccc !important;
     border-radius: 4px !important;
}

/* Style the list items in the dropdown */
.form-group .intl-tel-input .country-list .country {
    padding: 8px 12px; /* Adjust padding for list items */
    font-size: 14px; /* Match font size */
    /* Add hover styles etc. */
}
