*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    overflow-x: hidden;
}

/* Hero Section */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.letter-o {
    color: red;
    font-weight: bold; 
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    flex-wrap: wrap;
}

.header-left img {
    height: 40px;
}

.header-center {
    display: flex;
    align-items: center;
    gap: 30px;
}   

.header-center a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: 5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.login-button, .create-account-button {
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 17px 20px;
    cursor: pointer;
}

.create-account-button {
    background-color: #6c63ff;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    position: relative;
}

.hero-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-images .image-wrapper {
    position: relative;
}

.hero-images img {
    width: 200px; 
}
.hero-images .left-image {
    width: 200px;
    margin-bottom: -175px;
}

.hero-images .small-left-image {
    width: 50px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(100px, -50px); 
}

.hero-images .small-right-image {
    
    
    width: 50px; 
    height: 50px;
    margin-right: 80%;
    
}

.hero h1 {
    font-size: 48px;
    margin: 0 auto 30px auto;
    width: 500px;
}

.hero p.centered-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px auto;
    flex-wrap: wrap;
}   

.search-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.search-input-container {
    
    position: relative;
}

.search-input-container input {
    padding-left: 35px; 
}

.search-icon, .location-icon {
    
    left: 10px;
    top: 50%;
   
    font-size: 18px;
    color: #666;
}

.search-bar input, .search-bar select, .search-bar button {
    padding: 10px;
    font-size: 16px;
    border: none;
    outline: none;
    border-radius: 5px;
}

.search-bar button {
    background-color: #ff7043;
    color: #fff;
    cursor: pointer;
    border: none;
}

.trending-searches {
    text-align: center;
    margin: 20px 0;
    padding-top: 50px;
    color: #000;
    font-size: 20px;
}

.trending-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.trending-button {
    display: inline-block;
    padding: 10px 20px;
    color: #292929;
    background-color: white;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.trending-button:hover {
    background-color: #574b90;
}

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

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-height: 70vh; /* Modal'ın yüksekliği */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto; /* Dikey kaydırma */
    transition: transform 0.3s ease;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .header {
        padding: 20px; 
    }

    .header-center {
        flex-direction: column; 
        gap: 15px;
    }

    .header-right {
        flex-direction: column; 
        gap: 10px; 
    }

    .hero h1 {
        font-size: 36px; 
        width: 100%;
    }

    .hero-images img {
        width: 150px; 
    }

    .hero-images .left-image {
        width: 150px;
        transform: translate(75px, -50px);
    }

    .hero-images .small-left-image {
        width: 40px;
        transform: translate(75px, -20px);
    }

    .hero-images .small-right-image {
        width: 40px;
        height: 40px;
        margin-right: 60%;
    }

    .search-bar {
        flex-direction: column; 
        gap: 10px; 
    }

    .trending-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .modal-content {
        width: 90%; 
    }
}

@media (max-width: 480px) {
    .header {
        flex-direction: column; 
        align-items: flex-start;
    }

    .header-center {
        width: 100%; 
    }

    .header-right {
        width: 100%; 
        justify-content: flex-end; 
    }

    .hero h1 {
        font-size: 24px; 
    }

    .hero-images img {
        width: 100px; 
    }
    .hero-images .left-image {
        width: 100%;
        height: auto;
        

    }

    .search-bar {
        width: 100%; 
    }

    .search-bar input, .search-bar select, .search-bar button {
        width: 100%; 
    }
}
/* Onboarding  Section */
body{
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;


}

.how-it-works h4 {
    color: #2ecc71;
    letter-spacing: 2px;
    text-align: center;
}

.how-it-works h1 {
    margin: 10px 0 40px;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: auto;
    max-width: 400px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 50px;
}

.step {
    background: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 300px;
    min-height: 150px;
    padding: 40px;
    align-items: center;
    text-align: center;
    margin: 20px 0 10px 0;
   
}

.step img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 18px;
    margin: 10px 0;
}

.step p {
    font-size: 14px;
    color: #777;
}

/* Featured Jobs Section */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f7;
    color: #333;    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
    padding-block: 150px;
}

header {
    margin-bottom: 40px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 45px;
}

header h2, header h1, header p {
    margin: 10px 0;
}

header h2 {
    color: #7c58c1;
}

header h1 {
    font-size: 36px;
}

header p {
    font-size: 18px;
    color: #666;
}

.navigation-buttons {
    display: flex;
}

.nav-button {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-left: 10px;
    cursor: pointer;
}

.nav-button.orange {
    background-color: #ff5722;
    color: #fff;
    border: none;
}

.job-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin: 30px 0;
    height: 750px;
    overflow-y: auto;
}

.job-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 300px;
    min-height: 250px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s;
}

.job-card:hover {
    transform: translateY(-10px);
}

.job-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.job-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
}

.job-card h3 {
    font-size: 20px;
    margin: 0;
}

.job-card p.date {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0 0;
}

.job-card h4 {
    font-size: 20px;
    margin: 20px 0 10px 0;
}

.job-card .location-type {
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-card .location, .job-card .type {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    margin-top: 100px;
}

.job-card .location {
    background: #ffe6e6;
    border: 1px solid #ff5733;
    color: #ff5733;
}

.job-card .location img {
    width: 16px;
    height: auto;
    margin-right: 5px;
}

.job-card .type {
    background: #f1f1f1;
    color: #333;
}

.see-all {
    margin: 20px 0;
    text-align: center;
}

.see-all button {
    background-color: #7c58c1;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.see-all button:hover {
    background-color: #6a47a5;
}
/* Featured Jobs Section */

/* Jobs Section */
.jobs-container{
    max-width: 1200px;
    margin: auto;
}

.jobs-header-div{
    max-width: 540px;
    margin: auto;
}

.jobs-category{
    font-family: "Poppins" , sans-serif;
    color: #F57343;
    font-size: clamp(10px, 5vw, 16px);
    text-align: center;
    letter-spacing: 0.17rem;
    font-weight: 600;
}

.jobs-subtitle{
    color: #292929;
    font-family: "Montserrat" , sans-serif;
    font-size: clamp(30px, 9vw, 50px);
    text-align: center;
    line-height: clamp(40px, 9vw, 60px);
    letter-spacing: -1px;
}

.jobs-text-div{
    margin: auto;
    max-width: 470px;
}

.jobs-text{
    color: #5B5A62;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: clamp(10px, 9vw, 18px);
    line-height: clamp(20px, 9vw, 28px);
}

.jobs-category-div{
    margin: auto;
    display: flex;
    justify-content: center;
}


#jobs-categories{
    max-width: 1200px;
    display: flex;
    justify-content: center;   
    gap: 60px;
    flex-wrap: wrap;
    flex: 1;
}

.jobs-item{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.jobs-image-div{
    max-width: 75px;
    position: relative;
}

.jobs-background{
    width: 100%;
    object-fit: cover;
}

.jobs-symbol-div{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-90%);
}

.jobs-symbol{
    width: 100%;
}

.jobs-name{
    font-family: "Inter" , sans-serif;
    font-weight: 600;
    font-size: clamp(15px, 5vw, 24px);
    line-height: clamp(20px, 5vw, 34px);
    letter-spacing: -0.52px;
    text-align: center;
}

.jobs-description{
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: clamp(10px, 5vw, 18px);
    line-height: clamp(10px, 5vw, 22px);
    letter-spacing: -0.4px;
    text-align: center;
    color:#919098
}

.jobs-underline{
    max-width: 160px;
    margin: 5% auto auto auto;
}

@media (max-width: 780px) and (min-width: 380px) {
    #jobs-categories {
        gap: 10px;
    }

    .jobs-item {
        flex: 0 0 calc(50% - 10px); /*Öğelerin genişliği ayarlanır*/
    }
}

@media (max-width: 300px) {
    .jobs-item {
        flex: 0 0 100%;
    }
}
/* Jobs Section */


/* Pricing Section */
.pricing-main-div {
    display: flex;            
    justify-content: space-between;
    align-items: center;
    padding-block: 150px;
}
  
.pricing-container-div{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
}
  
.pricing-package-div {
    display: flex;
    justify-content: center;  
    width: 700px;
    gap: 45px;
}
  
.pricing-happy-users {
    display: flex;
    width: 145px;
    height: 70px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 250px;
}
  
.hu-count {
    display: flex;
    align-items: center;
}
  
.hu-k {
    margin: 0;
}

.hu-title{
    font-family: "Inter", sans-serif ;
    font-size: 15px;
}
  
.hu-emoji {
    display: flex;
    align-items: center;
    font-size: 35px;
    z-index: 2;
    background-color: transparent;
    border-color: transparent;
    cursor: pointer; 
}
  
.hu-emoji:hover {
    max-width: 100px;
}
  
.pricing-swiper {
    max-width: 360px;
    height: 500px;
    top: 20px;
}
  
.pricing-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 20px;
    background-color: #fff;
}
  
.pricing-evaluations {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px auto;
}
  
.pricing-evaluations-title{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
  
.pricing-grade {
    font-family: "Inter",sans-serif;
    font-size: clamp(10px, 5vw, 20px);
    font-weight: 600;
    line-height: clamp(20px, 5vw, 24px);
}
  
.pricing-package-type {
    font-family: "Inter", sans-serif;
    font-size: clamp(10px, 5vw, 18px);
    font-weight: 400;
    line-height: clamp(10px, 5vw, 20px);
    letter-spacing: -0.4px;
    color: #5B5A62;
}
  
.pricing-price{
    font-family: "Inter",sans-serif;
    line-height: clamp(30px, 7vw, 50px);
    font-weight: 700;
    line-height: clamp(30px, 7vw, 50px);
    letter-spacing: -1px;
    color: #292929;
}
  
.pricing-description {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    font-family: "Inter", sans-serif;
    font-size: clamp(10px, 5vw, 18px);
    font-weight: 400;
    line-height: clamp(10px, 5vw, 20px);
    letter-spacing: -0.4px;
    color: #5B5A62;
}
  
.pricing-description li {
    margin: 10px 0;
}
  
.sales-button {
    background-color: #ff5900;
    color: white;
    font-size: clamp(10px, 5vw, 16px);
    cursor: pointer;
    border-radius: 50px;
    border: none;
    font-family: "Inter",sans-serif;
    display: inline-block;
    margin: 0 auto;
    padding: 20px 40px;  
}

.sales-button:hover {
    background: #e64a19;
}
  
.pricing-value-div {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    margin-top: 150px;
    z-index: 1;
}
  
.price-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
  
.price-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(10px, 3vw, 16px);
    font-weight: 600;
    line-height: clamp(20px, 3vw, 24px);
    letter-spacing: 0.17em;
    text-align: left;
    color: #FFB200;  
}
  
.price-subtitle {
    font-family: "Inter", sans-serif;
    font-size: clamp(25px, 7vw, 50px);
    font-weight: 700;
    line-height: clamp(30px, 7vw, 50px);
    letter-spacing: -1px;
    text-align: left;
    color: #292929;
}
  
.price-paragraph {
    font-family: Inter;
    font-size: clamp(10px, 5vw, 18px);
    font-weight: 400;
    line-height: clamp(10px, 5vw, 30px);
    letter-spacing: -0.4px;
    text-align: left;
    color: #5B5A62;
}
  
.pricing-my-button {
    display: flex;
    justify-content: space-evenly;
}
  
.pricing-monthly-btn, .pricing-yearly-btn { 
    border-color: transparent;
    background-color: transparent;
    font-family: "Poppins", sans-serif;
    font-size: clamp(10px, 5vw, 20px);
    font-weight: 600;
    line-height: clamp(10px, 5vw, 18px);
    color: #292E37;
    cursor: pointer;
    position: relative;
}
  
.pricing-monthly-btn.active, .pricing-yearly-btn.active {
    color: #864BD8;
}
  
.pricing-monthly-btn.active::after, .pricing-yearly-btn.active::after {
    content: '';
    display: block;
    width: 100%;
    border-bottom: 2px solid #864BD8;
    position: relative;
    bottom: -10px;
}

@media (max-width: 1030px) {
    .pricing-container-div{
      flex-direction: column;
      align-items: center;
      margin: 50px auto;
      gap: 50px;
    }
  
    .pricing-package-div{
      max-width: 500px;    
    }
  
    .pricing-swiper{
      max-width: 260px;
      min-height: 500px;
    }
  
    .pricing-value-div{
      margin-top: 30px;
      max-width: 500px;
    }
}

@media (max-width: 870px) {
    .pricing-container-div{
      flex-direction: column-reverse;
      align-items: center;
      margin: 50px auto;
    }
  
    .pricing-package-div{
      max-width: 300px;    
    }

    .pricing-value-div{
      margin-top: 10px;
      max-width: 300px;
    }

    .pricing-package-div {
      flex-direction: column;
      align-items: center;
    }

    .pricing-happy-users {
        margin: 0px;
    }
}
/* Pricing Section */


/* Testimonial Section */
.testimonial-swiper {
    width: 1050px;
    min-height: 450px;
}


.testimonial-main-div{
    padding: 0 20px;
}

.testimonial-container{
    margin: auto;
    max-width: 1050px;
}

#testimonials-header{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    text-align: center;
    color: #0D8772;
}

#testimonial-subtitle{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(35px, 9vw, 50px);
    font-weight: 700;
    line-height: clamp(40px, 9vw, 60px);
    text-align: center;
    color: #292929;
}

.testimonial-contents{
    display: flex;
    justify-content: center;
}
.testimonials-image-div{
    max-width: 350px;
    max-height: 390px;
    border-radius: 200px;
    position: relative;  
    overflow: hidden; 
}

.testimonials-users-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-user-description{
    max-width: 480px;
}

.testimonials-userName{
   font-family: "Inter", sans-serif;
   font-size: 22px;
   font-weight: 700;
   line-height: 22px;
   text-align: left;
   color: #292929;
}

.testimonials-department{
    color: #83828A;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
}

.testimonials-text{
    color:#5B5A62;
    font-family: "Inter", sans-serif;
    font-size: clamp(10px, 9vw, 20px);
    font-style: italic;
    font-weight: 500;
    line-height: clamp(20px, 9vw, 36px);
    text-align: left;
}

.testimonials-signature{
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
}

.testimonials-evaluation-stars, .testimonials-evaluation-designer {
    max-width: 120px;
}

.signature-img{
    width: 100%;
}

.testimonials-evaluation {
    display: flex;
    justify-content: space-between;
}


@media (max-width: 870px) {
    .testimonials-evaluation{
      flex-direction: column;
      align-items: center;
      max-width: 670px;
      min-height: 400px;
      margin-bottom: 10%;
    }

    .testimonials-userName, .testimonials-department{
        text-align: center;
    }

    .testimonials-text{
        text-align: center;
        font-size: clamp(5px, 5vw, 20px);
        line-height: clamp(10px, 5vw, 30px);
    }

    .testimonials-signature{
        display: flex;
        justify-content: space-between;
        flex-direction: row;
    }
}
/* Testimonial Section */

/* NewsLetter-Component */
.newslatter-main-div{
    display: flex;
    justify-content: center;
    padding-block: 100px;
}

.newslatter-background-div{    
    background: url("/images/newsLatterBackground.png");  
    background-position: center;
    background-size: cover;
    min-height: 380px;
    max-width: 1200px;
    flex: 1;
    border-radius: 25px;
    position: relative;
    z-index: 0;
}

.newslatter-object-div{
    top: 80px;
    max-width: 1200px;
    position: absolute;
    z-index: -1;
}

.nl-objects{
    width: 100%;
}

.newslatter-header-div{
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 15px;
}

.newslatter-title{
    color: #BC95F2;
    font-family: "Poppins" , sans-serif;
    font-size: clamp(10px, 3vw, 16px);
    font-weight: 600;
    line-height: clamp(20px, 3vw, 24px);
    letter-spacing: 0.2em;
    text-align: center;
}

.newslatter-subtitle{
    color: #FFFFFF;
    font-family: "Montserrat" , sans-serif;
    font-size: clamp(25px, 7vw, 50px);
    font-weight: 700;
    line-height: clamp(30px, 7vw, 60px);
    letter-spacing: -1px;
    text-align: center;
}

.newslatter-email-div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    max-width: 500px;
    width: 100%;
    margin: auto;
}

#newslatter-emailForm {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    background-color: white;
    border-radius: 38px;
    padding: 5px;
}

.nl-email-input {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 38px;
    font-family: "Poppins" , sans-serif;
    font-size: clamp(10px, 5vw, 14px);
    font-weight: 500;
    line-height: clamp(15px, 5vw, 21px);
    letter-spacing: 0.01em;
    text-align: left;
    color: #A3A2A8;
    background-color: transparent;
    outline: none;    
}

.nl-subscribe-button {
    font-family: "Inter" , sans-serif;
    font-size: clamp(10px, 5vw, 16px);
    font-weight: 600;
    line-height: clamp(15px, 5vw, 20px);
    text-align: center;
    color: #FFFFFF;
    background: #FFB200;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    padding: 20px 30px;
}

.nl-subscribe-button:hover {
    background-color: #e69500;
}


@media (max-width: 520px) {
    .nl-email-input{
        padding: 15px;
        font-size: 10px;    
    }

    .nl-subscribe-button {
        border-radius: 20px;
        font-size: 10px;
        padding: 10px 20px;
        max-width: 100px;
        width: 100%;
    }
    
    .newslatter-background-div{    
        min-height: 300px;     
    }
    
    #newslatter-emailForm {
        max-width: 280px;
    }
}

@media (max-width: 320px){
    #newslatter-emailForm {
        flex-direction: column;
        gap: 10px;
    }

    .nl-email-input {
        width: 200px;
        padding: 15px;
        font-size: 10px;    
    }

    .nl-subscribe-button {
        border-radius: 20px;
        font-size: 10px;
        padding: 10px 20px;
        position: relative;
    }

    #newslatter-emailForm {
        max-width: 210px;
    }
}
/* NewsLetter-Component */


/* Footer Section */

body {
    font-family: Arial, sans-serif;
}

footer {
    max-width: 1300px;
    margin: auto;
    padding: 20px 20px;
    border-top: 1px solid #e7e7e7;
}

.footer-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    
    gap: 20px;
}

.footer-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-width: 175px;
    height: 100%;
}
.footer-section p {
    margin-top: 10px; 
    margin-bottom: 10px;
}



.footer-logo {
    width: 100px;
    margin-bottom: 20px;
}
.social-media {
    margin-top: 20px; /* Bu satır sosyal medya ikonlarını aşağıya kaydırır */
}



.social-icons {
    display: flex;
    
    gap: 10px;
    margin: 10px 0;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 15px; 
}

.footer-section ul li a {
    text-decoration: none;
    color: #333;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 80px;
    gap: 50px; 
}
/* Footer Section */