body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #343a40;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.button:hover {
    background-color: #0056b3;
    text-decoration: none;
}

header {
    background-color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 1.5em;
    margin: 0;
    color: #212529;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #495057;
    padding: 10px 15px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #e9ecef;
}

.dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    min-width: 180px;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  /* Style the dropdown items */
  .dropdown-menu li {
    margin: 0;
  }
  
  .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #495057;
    text-decoration: none;
  }
  
  .dropdown-menu li a:hover {
    background-color: #f8f9fa;
  }
  
  /* Show on hover */
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  

.apply-button {
    background-color: #ffc107;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 8px;
    font-weight: 500;
}

.apply-button:hover {
    background-color: #e0a800;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 8px;
    font-weight: 500;
}

main {
    padding: 30px;
}

.Welcome {
    background-image: url('Welcome_background.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.Welcome-content {
    max-width: 800px;
    margin: 0 auto;
}

.Welcome-content h1 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: bold;
}

.Welcome-content p {
    font-size: 1.2em;
    color: #f8f9fa;
    margin-bottom: 20px;
}

.about-container {
    margin-bottom: 30px;
}

.about-text-box {
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.about-text-box p {
    color: black;
    text-align: center;
    background-color: white;
    font-weight: 400;
    font-size: 20px;
    line-height: 38px;
    letter-spacing: 0.5px;
}

.about-button-wrapper {
    text-align: center;
    padding-top: 10px;
}

.about-button {
    background-color: #ffc107;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.about-button:hover {
    background-color: #e0a800;
}

.about p {
    color: #495057;
    line-height: 1.8;
}

.find-your-path {
    background-image: url('find-your-path_background.png');
    background-size: cover;
    background-position: center;
    min-height: 180px;
    display: flex;
    gap: 27px;
    margin-bottom: 30px;
    padding-top: 38px;
    padding-bottom: 38px;
    padding-left: 60px;
    padding-right: 60px;
    border-radius: 8px;
}

.path-card {
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    flex: 1;
    overflow: auto;
}

.icon-left {
    float: left;
    margin-right: 15px;
    font-size: 3em;
    color: #007bff;
}

.text-right {
    overflow: hidden;
}

.text-right h3 {
    color: #212529;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.3em;
    font-weight: bold;
}

.text-right p {
    color: #495057;
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.get-started-link {
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85em;
    transition: color 0.3s ease;
}

.get-started-link:hover {
    color: #e0a800;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .find-your-path {
        flex-direction: column;
    }
}

.help-container {
    background-color: #f8f9fa;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.help-image {
    flex: 0 0 45%;
    border-radius: 10px;
    overflow: hidden;
}

.help-image img {
    display: block;
    width: 100%;
    height: auto;
}

.help-content {
    flex: 1;
    text-align: left;
}

.help-content h2 {
    color: #212529;
    margin-bottom: 20px;
    font-size: 2.2em;
    font-weight: bold;
}

.help-content p {
    color: #495057;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
}

.help-buttons {
    display: flex;
    gap: 20px;
}

.button.yellow-button {
    background-color: #ffc107;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1em;
    border: none;
}

.button.yellow-button:hover {
    background-color: #e0a800;
}

.button.white-button {
    background-color: white;
    color: #ffc107;
    border: 1px solid #ffc107;
    padding: 13px 27px;
    border-radius: 8px;
    font-size: 1em;
}

.button.white-button:hover {
    background-color: #e9ecef;
    color: #e0a800;
    border-color: #e0a800;
}

.newsletter {
    background-color: #343a40;
    color: white;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
}

.newsletter h2 {
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: bold;
}

.newsletter1 {
    font-size: 1.1em;
    opacity: 0.8;
}

.newsletter2 {
    margin-bottom: 30px;
    font-size: 1.1em;
    opacity: 0.8;
}

.newsletter form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter input[type="email"] {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    width: 80%;
    max-width: 500px;
    font-size: 1em;
}

.newsletter label {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #f8f9fa;
    font-size: 0.9em;
}

.newsletter input[type="checkbox"] {
    margin-right: 10px;
}

.newsletter button {
    background-color: #ffc107;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: #e0a800;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 30px;
    text-align: center;
}

.social-links a {
    display: inline-block;
    margin: 0 15px;
}

.social-links img {
    height: 28px;
    vertical-align: middle;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links img:hover {
    opacity: 1;
}

.footer-links a {
    color: #adb5bd;
    margin: 0 15px;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

footer p {
    margin-top: 20px;
    font-size: 0.9em;
    opacity: 0.7;
}

.page-header {
    background-color: #e9ecef;
    padding: 60px 30px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 12px;
}

.page-header h1 {
    color: #212529;
    font-size: 2.5em;
    font-weight: bold;
}

.page-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    line-height: 1.8;
    color: #495057;
}

@media (max-width: 992px) {
    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 15px 0;
    }

    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .featured-areas,
    .find-your-path {
        grid-template-columns: 1fr;
    }

    .contact-buttons a {
        display: block;
        margin: 10px 0;
    }

    .newsletter form {
        width: 95%;
    }
}