body {
    font-family: 'Inter', sans-serif;
    background-color: white;
    position: relative; /* Ensure absolute positioning within body */
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand, .nav-link {
    font-weight: 700;
}

/* New addition for the profile icon */
.nav-link .fa-user {
    margin-right: 5px;
    font-size: 1.2rem;
    color: #6c757d;
}

/* Utility Class for Box Shadow */
.box-shadow-light {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

/* General Read-only Field Styles */
.readonly-field {
    background-color: #f0f0f0; /* Light gray background to indicate read-only */
    color: #6c757d; /* Gray text color */
    border: none; /* Remove border */
    box-shadow: none; /* Remove any shadow */
    outline: none; /* Remove outline */
    cursor: not-allowed; /* Change cursor to indicate it's not editable */
}

/* General Padding and Margin */
.padding-15 {
    padding: 15px;
}

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

/* Profile Fields Styling */
.profile-fields {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    /* Utilize shared classes */
    box-shadow: var(--box-shadow-light);
    padding: var(--padding-15);
    margin-bottom: var(--margin-bottom-20);
}

/* VPN Access Section Styles */
.vpn-access-section {
    /* Utilize shared classes */
    padding: var(--padding-15);
    border-radius: 8px;
    margin-bottom: var(--margin-bottom-20);
    box-shadow: var(--box-shadow-light);
}

/* Specific styles for Russian VPN access section */
.vpn-access-ru {
    background-color: #e6f2ff; /* Very light blue background */
}

/* Specific styles for Non-Russian VPN access section */
.vpn-access-fi {
    background-color: #fff9c4; /* Very light yellow background */
}

/* Certificate Link Styles */
.vpn-certificate-link {
    color: #28a745; /* Green color for download link */
    text-decoration: underline;
    font-weight: bold;
}

.vpn-certificate-link:hover {
    color: #1e7e34; /* Darker green on hover */
}

/* Additional custom styles (if necessary) */
h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Price Box Styling */
.price-box {
    background-color: #e6f2ff;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center; /* Center the text within the plaque */
    max-width: 150px; /* Adjust width for centering */
    margin: 0 auto; /* Center the plaque horizontally */
}

/* Button Styling */
.join-btn {
    background-color: #0056b3;
    border-color: #0056b3;
    font-size: 1.25rem;
    padding: 10px 40px;
}

.join-btn:hover {
    background-color: #004494;
    border-color: #004494;
}

.fine-print {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Email Input Styling */
.email-input {
    font-size: 0.875rem;
    max-width: 400px;
    margin: 0 auto;
}

.email-input::placeholder {
    color: #adb5bd; /* Light gray color for placeholder */
}

/* Unique Feature Text */
.unique-feature {
    font-size: 1rem;
    color: #0056b3;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Policy List Styling */
.policy-list {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    max-width: 250px;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 10px;
    background-color: #fff9c4;
    border-radius: 25px;
    border: 2px solid #f5e79e;
    box-shadow: var(--box-shadow-light);
}

.policy-list li {
    font-size: 0.8rem; /* Smaller font size for the rules */
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: #333;
}

.rules-box {
    width: 300px; /* Define a fixed width */
}

.mb-3.d-flex.align-items-center {
    align-items: center; /* Aligns items vertically in the middle */
}

/* New styles for Terms and Conditions and Privacy Policy */
h3, h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.2rem;
}

p, ul {
    margin-bottom: 1rem;
}

ul {
    padding-left: 1.25rem;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 800px;
}

.text-center {
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

.vpn-invite-only {
    background-color: #DFF0D8;
    border: #547a54;
    border-radius: 8px;
    color: #D60B04;
    padding: 1rem;
}

.vpn-access-openconnect {
    background-color: #f0fff4; /* Very light green background */
    border: 1px solid #28a745; /* Green border matching the button color */
    padding: 1rem;
}

/* Specific styles for the Downloads section */
.vpn-access-downloads {
    background-color: #fff9c4; /* Very light yellow background */
    border: 1px solid #f5e79e; /* Yellow border */
    border-radius: 8px; /* Rounded corners */
    padding: 15px; /* Padding inside the section */
}

/* Styling for the download links */
.download-links a {
    color: #007bff; /* Default link color */
    text-decoration: underline;
    font-weight: bold;
    margin-right: 15px; /* Space between links */
    display: inline-block;
    margin-bottom: 10px; /* Space below the link for mobile view */
}

.download-links a:hover {
    color: #0056b3; /* Darker blue on hover */
}

/* Loading Indicator Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    z-index: 1050; /* Ensure it appears on top of other content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Spinner Style */
.spinner-border {
    width: 3rem;
    height: 3rem;
    margin-bottom: 10px;
}

/* Hide Loading Indicator by Default */
#loading-indicator {
    display: none;
}


/* Ensure links are on the same line for desktop and on separate lines for mobile */
@media (max-width: 576px) {
    .download-links a {
        display: block; /* Each link on its own line */
    }
}


@media (max-width: 576px) {
    h3 {
        font-size: 1.5rem;
    }
    h4 {
        font-size: 1.2rem;
    }
}

/* New class for green, bold text */
.green-bold-text {
    color: #28a745; /* Use the same green as the button */
    font-weight: bold;
}
