* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    
}

body, html {
    margin: 0;
    padding: 0;
      font-weight: 600;
    overflow-x: hidden;
    
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

.header-bar {
    width: 100%;
    background: linear-gradient(90deg, #2f5c58 0%, #3f6e85 100%);
    padding: 1px 40px;
    box-sizing: border-box;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1px 20px;
    background: linear-gradient(90deg, #2f5c58 0%, #3f6e85 100%);
    color: white;
}

.logo-block {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 90px;
    height: 70px;
    margin-right: 0px; 
   
}

.site-footer {
  font-size: 14px;
  color: #333;
  margin-top: 20px;
  line-height: 1.6;
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 4px;
  overflow: hidden;       
  position: relative;
  width: 100%;           
  white-space: nowrap;   
}

.marquee {
  display: inline-block;
  padding-left: 100%;     
  animation: marqueeScroll 15s linear infinite; 
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(-100%);   
  }
  100% {
    transform: translateX(0%); 
  }
}

.site-footer a {
  font-weight: bold;
  color: #0066cc;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  color: #004499;
}




.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: -15px;
   
}


.title h1 {
    margin: 0;
    margin-bottom: -12px;
     margin-left: -10px; 
    font-size: 36px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    color: white;
    
}

.title p {
    margin: 0;
    font-size: 18px;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
   
}

.right-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.top-bar {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top:5px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px; 
    border-radius: 5px; 
}

.top-bar a:hover {
    background: rgba(255, 255, 255, 0.1);
}


.nav-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px; 
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 0; 
}

.nav-links a:hover {
    text-decoration: underline;
}


.hidden {
    display: none;
}


.hidden {
    display: none;
}

.login-link {
    background: #6fb6a9;
    color: white;
    font-size: 16px;
    padding: 10px 18px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

.login-link:hover {
    background: #675c5c;
}

.login-link:active {
    background: #444;
}

.login-link.active {
    background: grey !important;
    color: white !important;
    outline: none;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

#loginButtonsContainer {
    position: absolute;
    top: 60px;
    right: 30px;
    background: white;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    z-index: 1000;
    min-width: 250px;
    max-width: 350px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s ease-in-out;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#loginButtonsContainer p {
    font-size: 18px;
    font-weight: bold;
    color: #3f3030;
    margin-bottom: 15px;
    text-align: center;
}

#loginButtonsContainer button {
    background-color: #3f6e68;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);
}

#loginButtonsContainer button:hover {
    background: #29842d;
    transform: scale(1.05);
}

#loginButtonsContainer button:focus,
#loginButtonsContainer button:active {
    outline: none;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.5);
    background-color: grey !important;
    color: white !important;
}

#loginButtonsContainer button.active-btn {
    background-color: grey !important;
    color: white !important;
    outline: none;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.5);
}

.hidden {
    display: none;
}




.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.logo-text {
    font-size: 26px;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease-in-out;
}


.logo-text:hover {
    color:#6fb6a9;    ;
}


.navbar .nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}


.navbar .nav-links li {
    position: relative;
}

.navbar .nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
}


.navbar .nav-links li a:hover {
    color:#6fb6a9;    ;
}



.navbar .nav-links li a.active {
    background: linear-gradient(to right, #6d5151, #4a2e2e);
    color: white !important;
    font-weight: bold;
    border-radius: 5px;
    padding: 10px 15px;
    display: inline-block;
    position: relative;
    transition: transform 0.2s ease-in-out, background 0.3s ease-in-out;
    transform: scale(1.1); 
}


.navbar .nav-links li a::after {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    background:#6fb6a9;    ;
    transition: width 0.3s ease-in-out;
    margin-top: 5px;
    border-radius: 10px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}


.navbar .nav-links li a:hover::after,
.navbar .nav-links li a.active::after {
    width: 100%;
}


.navbar .nav-links li a:focus,
.navbar .nav-links li a:active {
    outline: none;
    box-shadow: none !important;
    transform: scale(1.1); 
    background: linear-gradient(to right,#6fb6a9    , #abb2b2) !important;
}


.navbar .nav-links li a.current-page-active {
    background: linear-gradient(to right, #6fb6a9, #abb2b2) !important; 
    font-weight: bold; 
}


/* taketest */

 #dynamicContent {
    margin-top: -60px;
    margin-bottom: 90px;
    padding: 10px;
} 

main {
    padding: 20px;
    background-color: white;
}
.modal-content {
    position: absolute;
    top: -190px;
    
    right: 190px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    color: black;
    z-index: 1000;
    min-width: 280px;
    max-width: 350px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease-in-out;
    animation: slideIn 0.3s ease-out;
}

.modal-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
    color: #333;
}
.contact-info {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 500;
}
.contact-info a {
    text-decoration: none;
    color: #6fb6a9;
    font-weight: bold;
    margin-bottom: -4px;
}
.contact-info i {
    text-decoration: none;
    color: #5b5353;
    font-weight: bold;
    margin-top:2px;
}
.contact-info a:hover {
    color:  #082b37;
}
.contact-info a:active {
    color: #504545 !important;
}

.contact-info a:focus {
    color: #504545 !important;
    outline: none;
}

.hidden {
    display: none;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.slide {
    width: 35%;
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}


.hero-overlay {
    position: absolute;
    top: 50%;
    left: 10%; 
    transform: translate(0, -50%);
    text-align: left;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    z-index: 2;
    width: 50%;
    padding: 20px 30px;
    border-radius: 8px;
   
    max-width: 600px; 
    line-height: 1.5;
}

.hero-overlay h1 {
    font-size: 1.5rem; 
    color: #ffffff;
    background: linear-gradient(90deg, #4d738d6d, #3282b865); 
    padding: 10px 12px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero-overlay p {
    color: #eee;
    line-height: 1.5;
}

.explore-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #2f4f61;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
   
}

.explore-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.explore-btn:active {
    transform: scale(0.98);
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
}

.dot.active {
    opacity: 1;
}



.triangle {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px; 
    height:450px; 
    background-color:#507f7b; 
    clip-path: polygon(100% 0, 0 0, 100% 100%); 
    z-index: 1;
}



.line1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 31%;
    height: 300px;
    background-color: #ffffff; 
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 3;
}

.line {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 15%;
    height: 200px;
    background-color:#2a625c;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 4;
}


.back-button {
    position: absolute;
    top: 5px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: transparent;
    color: rgb(255, 255, 255);
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    z-index: 1000;
    
}

.back-button i.fas.fa-home {
    margin-right: 5px;
    font-size: 1.2em;
}

.back-button:hover {
    background-color: #4d968e;
    color: white;
}


/* 
take test */

.take-test-btn1 {
  
    display: block; 
    margin: 20px auto; 
    text-align: center;
    background-color: #f5e9dd;
    color: rgb(7, 7, 7);
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    width: 200px; 
}
.taketest-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
  
    background-color: transparent;
    text-align: center;
    border-radius: 8px;
   
}

.taketest-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: center;
    
}



.features {
    padding: 40px 20px;
    text-align: center;
    margin-top: -40px;
}

.features h2 {
    margin-bottom: 30px;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.feature{
    width: 200px;
    margin: 20px;
    text-align: center;
}

.featurei {
    font-size: 2em;
    margin-bottom: 10px;
    color:  #4a2e2e;
}

.usage {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 15px 10px;
    background: linear-gradient(90deg, #2f5c58 0%, #3f6e85 100%);
    color: white;
    margin-top: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  
  footer p {
    margin: 0;
    font-size: 0.9em;
  }

  .chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00aaff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1000;
    font-size: 28px;
    color: white;
}

.chat-box {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    z-index: 1000;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}

.chat-header {
    background-color: #00aaff;
    color: white;
    padding: 12px 15px;
    font-weight: bold;
}

.chat-messages {
    height: 220px;
    overflow-y: auto;
    padding: 10px;
    background: #f9f9f9;
    font-size: 14px;
}

#chat-input {
    border: none;
    border-top: 1px solid #ddd;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    font-size: 14px;
}
.options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.option-btn {
    padding: 10px;
    background-color: #009688;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.option-btn:hover {
    background-color: #00796b;
}

.option-btn:active {
    background-color: #004d40;
}


 #services-section {
  margin-bottom: 40px !important;  
  display: block;
}

#about-section {
  margin-top: 40px !important;
  display: block;
}

.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    background-color: #3f6e85;
    color: white;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.chat-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    font-family: 'Segoe UI', sans-serif;
    z-index: 1000;
    animation: fadeIn 0.5s;
}

.chat-header {
    background: #3f6e85;
    color: white;
    padding: 12px;
    font-weight: bold;
    font-size: 16px;
}

.chat-messages {
    padding: 10px;
    height: 220px;
    overflow-y: auto;
    border-top: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.chat-section {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

#user-details input, 
#user-details button,
#initial-options button, 
.support-buttons button,
.goback-btn {
    width: 90%;
    height: 42px; 
    margin-top: 10px;
    padding: 0 15px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

#user-details input {
    border: 1px solid #ccc;
}

#user-details button, 
#initial-options button, 
.support-buttons button {
    background-color: #3f6e85;
    color: white;
}

#user-details button:hover, 
#initial-options button:hover, 
.support-buttons button:hover {
    background-color: #2b4e5c;
}

.support-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.go-back-container {
    margin-top: 10px;
    text-align: center;
}

.message-bubble {
    background-color: #f0f0f0;
    padding: 10px 15px;
    margin: 8px 0;
    border-radius: 10px;
    display: flex; 
    align-items: center;
    justify-content: center;
    width: 90%;
    min-height: 42px; 
    font-size: 14px;
    line-height: 1.5;
    box-sizing: border-box;
}

a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.goback-btn {
    background-color: #dcdcdc;
    color: #333;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.goback-btn:hover {
    background-color: #bcbcbc;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}



  @media screen and (max-width: 768px) {

    .header-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
    }

    .logo-block {
        justify-content: center;
        width: 100%;
        margin-bottom: 5px;
    }

    .right-block {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    /* Top bar and nav side-by-side */
    .top-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        flex-wrap: nowrap;
    }

    .top-bar a {
        display: flex;
        align-items: center;
        font-size: 14px;
        padding: 6px 12px;
        white-space: nowrap;
    }

    .navbar .nav-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .navbar .nav-links li a {
        padding: 5px;
        font-size: 14px;
    }

    .login-link {
        padding: 8px 14px;
        font-size: 14px;
    }

    .title h1 {
        font-size: 28px;
        margin-left:-55px;
    }

    .title p {
        font-size: 15px;
        margin-right: 10px;
    }

    #loginButtonsContainer {
        right: 20px;
        top: 60px;
    }
    .modal-content {
        right: 50%;
        transform: translateX(50%);
        top: -160px;
    }

    .back-button {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    font-size: 14px;
    z-index: 999;
        
    }
    .navbar {
        width: 100%;
        overflow-x: auto; 
        white-space: nowrap;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
        padding: 10px 0;
        list-style: none;
        overflow-x: auto; 
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none; 
    }

    .nav-links li {
        display: inline-block;
    }

    .nav-links li a {
        padding: 8px 12px;
        font-size: 14px;
        text-decoration: none;
        color: white;
        border-radius: 5px;
        transition: background 0.3s ease-in-out;
    }

    .nav-links li a:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    .header-bar {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }


    .top-bar {
        justify-content: center;
        align-items: center;
        flex-direction: row;
        text-align: center;
        padding-bottom: 5px;
    }

    .top-bar a {
        margin: 5px 0;
        font-size: 13px;
    }
.features h2 {
    font-size: 1.2rem;
  }
  .feature-list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }
  .feature p {
    font-size: 0.5rem;
  }


    #loginButtonsContainer {
        width: 80%;
        min-width: unset;
        top: 50px;
        right: 50%;
        transform: translateX(50%);
        padding: 20px;
    }


    #contentArea {
        padding: 15px;
       
    }


    .hero-overlay {
        width: 80%;
        max-width: 400px;
        text-align: center;
        left: 50%;
        transform: translate(-50%, -50%);
    }


    .explore-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .take-test-btn {
        padding: 15px;
        font-size: 14px;
    }

    .take-test-btn1 {
        width: 80%;
        padding: 12px;
    }


    .modal-content {
        width: 90%;
        top: 20%;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }


    footer {
        padding: 10px;
        font-size: 12px;
    }

  
    .slider {
        width: 100%;
    }

    .slide {
        width: 100%;
    }


    .triangle, .line1, .line {
        display: none;
    }
    footer {
        padding: 10px;
        font-size: 12px;
    }

    .footer-links {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
    }

    .footer-links a {
        font-size: 12px;
        padding: 5px;
    }
}
@media (max-width: 480px) {
  .hero-overlay {
    width: 90%;
    padding: 15px;
  }

  .hero-overlay h1 {
    font-size: 1.2rem;
    padding: 8px 10px;
  }

  .explore-btn {
    padding: 8px 14px;
    font-size: 14px;
  }

  .title h1 {
    font-size: 1.6rem;
    margin-left: -70px;
    text-align: center;
  }

  .title p {
    font-size: 1rem;
    text-align: center;
  }

  .logo-image {
    width: 70px;
    height: 55px;
  }

  .nav-links, .top-bar {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .login-link {
    font-size: 14px;
    padding: 8px 14px;
  }

  #loginButtonsContainer {
    top: 50px;
    right: 10px;
    padding: 20px;
    min-width: 200px;
    max-width: 280px;
  }

  .modal-content {
    top: -150px;
    right: 10px;
    min-width: 240px;
  }

  .chat-box {
    width: 90%;
    right: 5%;
  }

  .feature, .features, .feature-list {
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    font-size: 14px;
  }

  .chat-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .message-bubble {
    font-size: 13px;
  }

    .features {
    padding: 30px 12px;
  }
  .features h2 {
    font-size: 1.4rem;
  }
  .feature-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature {
    padding: 16px;
  }
  .feature i {
    font-size: 1.8rem;
  }
  .feature p {
    font-size: 0.9rem;
  }
  .top-bar {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    padding-right: 10px;
    
  }

  .top-bar a {
    font-size: 14px;
    padding: 6px 10px;
  }

  #supportModal .modal-content,
  #loginButtonsContainer {
    width: 90%;
   
    padding: 20px;
    top: 80px; 
    position: absolute;
  }

#loginButtonsContainer {
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px;
  top: 80px;
  position: absolute;
}

  #supportModal .modal-content h2 {
    font-size: 18px;
    text-align: center;
  }

  .contact-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
    font-size: 14px;
    word-break: break-word;
  }

  .contact-info a {
    font-size: 14px;
    color: #3f6e68;
    text-decoration: none;
    font-weight: 600;
  }

  .contact-info a:hover {
    color: #265e5b;
    text-decoration: underline;
  }

  .login-link {
    font-size: 14px;
    padding: 8px 16px;
  }

  #loginButtonsContainer p {
    font-size: 16px;
  }

  #loginButtonsContainer button {
    font-size: 15px;
    padding: 10px 18px;
  }
  .right-block {
    align-items: center;
    margin-top: 10px;
  }

}

    