@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}
body {
    background-color: rgb(255, 255, 255);
}
.main {
    width: 100%;
    height: auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.main-heading-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    
}
.intro-section {
    width: 40%;
    height: auto;
    justify-content: left;
    display: block;
    flex-wrap: wrap;
}
.intro-section h3 {
    color: rgb(0, 0, 0);
    font-size: 30px;
    font-weight: 600;
    margin-left: 80px;
    margin-top: 50px;
    line-height: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards 0.5s;
}
.intro-section h1 {
    color: #000000; 
    font-size: 90px;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
    margin-left: 80px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}
.intro-section p {
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    margin-left: 80px;
    margin-top: 20px;
    line-height: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards 0.5s;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.download-buttons {
    width: auto;
    height: auto;
    margin-left: 70px;
    margin-top: 30px;
    justify-content: left;
    display: flex;
}
.playstore {
    width: 240px;
}
.playstore img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}
.playstore img:hover {
    animation: bounce 0.5s ease-in-out;
}
.appstore {
    width: 240px;
}
.appstore img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}
.appstore img:hover {
    animation: bounce 0.5s ease-in-out;
}
.mockup-section {
    width: 55%;
    height: auto;
    justify-content: center;
    display: flex;
    align-items: center;
}
.mockup-image {
    width: 70%;
    height: auto;
    animation: slideIn 1.5s ease-in-out;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.mockup-image img {
    width: 100%;
    animation: bounce 2s infinite ease-in-out;
    transition: transform 0.3s ease-in-out;
}
.features-container {
    width: 100%;
    height: auto;
    margin-top: 100px;
    padding-bottom: 100px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    transform: translateY(20px);
    transition: transform 0.5s, opacity 0.5s;
}
span {
    color: #aa832c;
}

.about-us-container {
    width: 100%;
    height: auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
}
.about {
    width: 60%;
    height: auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.about p {
    font-size: 23px;
    font-weight: 300;
    color: #000000;
    margin-top: 20px;
    line-height: 30px;
    padding-left: 100px;
    font-style: italic;
    text-align: center;
    padding-right: 100px;
}
.about a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    padding: 15px 30px;
    margin-top: 30px;
    background-color: #aa832c;
    border-radius: 30px;
}
.about a:hover {
    background-color: #000000;
    color: white;
    text-decoration: none;
    transition: 0.5s;
}
.youtube-preview {
    width: 100%;
    height: 600px;
    background-color: #f8f8f8;
    justify-content: center;
    display: none;
    flex-wrap: wrap;
    margin-top: 100px;
    align-items: center;
    padding: 50px;
}
.youtube {
    width: 50%;
    height: 100%;
    border-radius: 20px;
}
.features-container .heading {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 20px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.features-container .heading h2 {
    font-size: 50px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    text-align: center;
}
.features-frame {
    width: 90%;
    height: auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.features {
    width: 400px;
    height: auto;
    background-color: #f8f8f8;
    margin: 20px;
    border-radius: 50px;
    padding: 50px;
    display: block;
    align-items: center; /* Align items vertically */
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
    animation: bounceIn 1s ease-in-out forwards;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes appear {
    from {
        opacity: 0;
        scale:0.5;
    }
    to {
        opacity: 1;
        scale:1;
    }
}
.features-frame{
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
}
.features:hover {
    background-color: #aa832c;
    color: white;
}
.features:hover .icon {
    background-color: white;
    color: #aa832c;
}
.features:hover .feature-txt,
.features:hover .feature-line {
    color: white;
}
.icon {
    width: 60px;
    height: 60px;
    background-color: #000000;
    border-radius: 50px;
    margin-right: 20px;
    display: flex;
    align-items: center; /* Center icon content vertically */
    justify-content: center; /* Center icon content horizontally */
    color: white;
    font-size: 25px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.feature-txt {
    font-size: 25px;
    font-weight: 600;
    color: #aa832c;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    justify-content: center; /* Align text vertically */
    transition: color 0.3s ease-in-out;
}
.feature-line {
    font-size: 17px;
    margin-top: 15px;
    line-height: 25px;
    color: rgb(0, 0, 0);
    transition: color 0.3s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.about-proptelli-container {
    width: 100%;
    height: auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
}
.about-proptelli-frame {
    width: 85%;
    height: auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.about-section {
    width: 40%;
    height: auto;
    justify-content: left;
    display: block;
    flex-wrap: wrap;
}
.about-section h2 {
    font-size: 50px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin-top: 50px;
}
.about-section p {
    font-size: 17px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin-top: 20px;
    padding-right: 100px;
    line-height: 25px;
}
.points {
    width: 100%;
    height: auto;
    margin-top: 30px;
}
.icons {
    width: 60px;
    height: 60px;
    background-color: #aa832c;
    border-radius: 50px;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 25px;
    color: white;
}
.points h3 {
    font-size: 25px;
    font-weight: 600;
    color: #aa832c;
    margin-top: 15px;
}
.points p {
    font-size: 17px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    margin-top: 5px;
    line-height: 25px;
}
.about-image {
    width: 50%;
    height: auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.about-image{
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
}
.about-image img {
    width: 60%;
}
.previews-container {
    width: 100%;
    height: auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}
.carousel-container {
    width: 100%;
    max-width: 80%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
  }
  
  .carousel {
    display: flex;
    width: fit-content;
    animation: scroll 30s linear infinite;
  }
  
  .carousel:hover {
    animation-play-state: paused;
  }
  
  .card {
    width: 400px;
    height: auto;
    margin: 0 15px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
  }
  .carousel-container {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
}
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-315px * 5)); /* Width of card + margin */
    }
  }


.user-insight-container {
    width: 100%;
    height: auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
}
.insight-frame {
    width: 100%;
    height: auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.insight {
    width: auto;
    height: auto;
    justify-content: center;
    display: block;
    align-items: center;
    padding: 30px;
}
.insight h3 {
    font-size: 100px;
    font-weight: 600;
    color: #aa832c;
    text-align: center;
}
.insight p {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    line-height: 30px;
    text-align: center;
}
.working-steps-container {
    width: 100%;
    height: auto;
    background-color: #f8f8f8;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
    padding: 30px;
}
.working-steps-container .heading {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 20px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.working-steps-container .heading h2 {
    font-size: 50px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    text-align: center;
}
.steps-list {
    width: 70%;
    height: auto;
    justify-content: center;
    display: block;
    flex-wrap: wrap;
}
.steps {
    padding: 40px 30px;
    background-color: #ffffff;
    text-align: center;
    margin: 20px;
    border-radius: 50px;
}
.steps {
    animation: appear 5s linear;
    animation-timeline: view();
    animation-range: entry 0;
}
.steps p {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    line-height: 30px;
}
.download-container {
    width: 100%;
    height: auto;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
    padding: 30px;
}
.download-frame {
    width: 60%;
    height: auto;
    justify-content: center;
    background-color: #f8f8f8;
    display: flex;
    flex-wrap: wrap;
    border-radius: 80px;
    padding: 50px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.download-frame {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
}
.download-frame h2 {
    font-size: 50px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    text-align: center;
}
.download-frame p {
    font-size: 17px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    text-align: center;
    margin-top: 20px;
    line-height: 30px;
    padding-left: 100px;
    padding-right: 100px;
}
.download-frame h3 {
    font-size: 20px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    text-align: center;
    margin-top: 20px;
}
.download-buttons-footer {
    width: 100%;
    height: auto;
    margin-top: 30px;
    justify-content: center;
    display: flex;
}
.contact-container {
    width: 100%;
    height: auto;
    background-color: #aa832c;
    display: flex;
    justify-content: center;
    margin-top: 100px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}
.contact-container .heading {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}
.contact-container .heading h2 {
    font-size: 50px;
    font-weight: 600;
    margin-top: 50px;
    color: rgb(255, 255, 255);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    text-align: center;
}
.contact-frame {
    width: 70%;
    height: auto;
    display: flex;
    border-radius: 50px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
}
.contact {
    width: 400px;
    height: auto;
    background-color: #ffffff;
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
    border-radius: 50px;
    margin: 20px;
    padding: 30px;
}
.contact {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
}
.contact h3 {
    font-size: 25px;
    font-weight: 600;
    color: #aa832c;
    text-align: center;
}
.contact p {
    font-size: 25px;
    font-weight: 500;
    color: #000000;
    line-height: 30px;
    margin-top: 20px;
    text-align: center;
}
.contact-btn {
    padding: 15px 20px;
    background-color: #aa832c;
    align-items: center;
    align-content: center;
    justify-content: center;
    border-radius: 30px;
    display: flex;
    margin-top: 30px;
    color: white;
    text-decoration: none;
}
.contact-btn:hover {
    background-color: #000000;
    color: white;
    text-decoration: none;
    transition: 0.5s;
}



@media (max-width: 1480px) {
    .intro-section h3 {
        font-size: 20px;
        margin-top: 150px;
    }
    .intro-section h1 {
        font-size: 60px;
    }
    .intro-section p {
        font-size: 15px;
        line-height: 25px;;
    }
    .features-container .heading h2 {
        font-size: 40px;
    }
    .features {
        width: 300px;
        border-radius: 50px;
    }
    .feature-txt {
        font-size: 20px;
        font-weight: 600;
    }
    .feature-line {
        font-size: 15px;
        margin-top: 15px;
        line-height: 25px;
    }
    .card {
        width: 300px;
      }
      .about-section h2 {
        font-size: 40px;
      }
      .about-section p {
        font-size: 15px;
    }
    .icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
    .icons {
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
    .points h3 {
        font-size: 20px;
    }
    .points {
        margin-top: 20px;
    }
    .working-steps-container .heading h2 {
        font-size: 40px;
    }
    .steps p {
        font-size: 16px;
    }
    .steps {
        padding: 20px 30px;
    }
    .insight h3 {
        font-size: 70px;
    }
    .insight p {
        font-size: 16px;
    }
    .download-frame h2 {
        font-size: 40px;
    }
    .download-frame p {
        font-size: 15px;
    }
    .download-frame h3 {
        font-size: 17px;
    }
    .contact-container .heading h2 {
        font-size: 40px;
    }
    .contact h3 {
        font-size: 20px;
    }
    .contact p {
        font-size: 23px;
    }
    .about {
        width: 80%;
    }
    .about p {
        font-size: 18px;
        padding-left: 100px;
        padding-right: 100px;
    }
    .about a {
        padding: 10px 30px;
        margin-top: 20px;
    }
}



@media (max-width: 1440px) {
    .intro-section h3 {
        font-size: 20px;
        margin-top: 50px;
    }
    .intro-section h1 {
        font-size: 45px;
        margin-top: 10px;
    }
    .intro-section p {
        font-size: 15px;
        line-height: 25px;;
    }
    .playstore {
        width: 150px;
    }
    .appstore {
        width: 150px;
    }
    .features-container .heading h2 {
        font-size: 30px;
    }
    .features {
        width: 250px;
        border-radius: 10px;
        padding: 25px;
        margin: 10px;
    }
    .feature-txt {
        font-size: 20px;
        font-weight: 600;
    }
    .feature-line {
        font-size: 15px;
        margin-top: 15px;
        line-height: 25px;
    }
    .card {
        width: 250px;
      }
      .about-section h2 {
        font-size: 30px;
      }
      .about-section p {
        font-size: 15px;
    }
    .icons {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
    .points h3 {
        font-size: 20px;
    }
    .points {
        margin-top: 20px;
    }
    .working-steps-container .heading h2 {
        font-size: 30px;
    }
    .steps p {
        font-size: 16px;
    }
    .steps {
        padding: 20px 30px;
    }
    .insight h3 {
        font-size: 70px;
    }
    .insight p {
        font-size: 16px;
    }
    .download-frame h2 {
        font-size: 30px;
    }
    .download-frame p {
        font-size: 15px;
    }
    .download-frame h3 {
        font-size: 17px;
    }
    .contact-container .heading h2 {
        font-size: 30px;
    }
    .contact h3 {
        font-size: 20px;
    }
    .contact p {
        font-size: 20px;
    }
    .download-container {
        margin-top: 30px;
        padding: 20px;
    }
    .download-frame {
        width: 70%;
        border-radius: 50px;
        padding: 30px;;
    }
    .contact-frame {
        width: 100%;
    }
    .contact {
        width: 350px;
    }
    .user-insight-container {
        margin-top: 50px;
    }
}



@media (max-width: 1024px) {
    .main-heading-container {
        flex-wrap: wrap;
        margin-top: 0px;
    }
    .intro-section {
        width: 100%;
    }
    .mockup-section {
        width: 100%;
    }
    .intro-section h3 {
        font-size: 20px;
        margin-top: 150px;
        margin-left: 50px;
    }
    .intro-section h1 {
        font-size: 40px;
        margin-top: 10px;
        margin-left: 50px;
    }
    .intro-section p {
        font-size: 15px;
        line-height: 25px;
        margin-left: 50px;
    }
    .download-buttons {
        margin-left: 50px;
    }
    .playstore {
        width: 150px;
    }
    .appstore {
        width: 150px;
    }
    .features-container .heading h2 {
        font-size: 30px;
    }
    .features {
        width: 250px;
        border-radius: 50px;
        padding: 25px;
    }
    .feature-txt {
        font-size: 20px;
        font-weight: 600;
    }
    .feature-line {
        font-size: 15px;
        margin-top: 15px;
        line-height: 25px;
    }
    .about-proptelli-frame {
        flex-wrap: wrap;
        width: 90%;
    }
    .card {
        width: 350px;
      }
      .about-section h2 {
        font-size: 30px;
      }
      .about-section p {
        font-size: 15px;
        padding-right: 0px;
    }
    .icons {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
    .points h3 {
        font-size: 20px;
    }
    .points {
        margin-top: 20px;
    }
    .working-steps-container .heading h2 {
        font-size: 30px;
    }
    .steps p {
        font-size: 16px;
    }
    .steps {
        padding: 20px 30px;
    }
    .insight h3 {
        font-size: 70px;
    }
    .insight p {
        font-size: 16px;
    }
    .download-frame h2 {
        font-size: 30px;
    }
    .download-frame p {
        font-size: 15px;
    }
    .download-frame h3 {
        font-size: 17px;
    }
    .contact-container .heading h2 {
        font-size: 30px;
    }
    .contact h3 {
        font-size: 20px;
    }
    .contact p {
        font-size: 20px;
    }
    .download-container {
        margin-top: 30px;
        padding: 20px;
    }
    .download-frame {
        width: 90%;
        border-radius: 50px;
        padding: 30px;;
    }
    .contact-frame {
        width: 100%;
    }
    .contact {
        width: 350px;
    }
    .user-insight-container {
        margin-top: 50px;
    }
    .about-section {
        width: 100%;
        margin-top: 0px;
        margin-bottom: 100px;
    }
    .about-image {
        width: 100%;
    }
    .steps-list {
        width: 100%;
    }
}




  @media (max-width: 768px) {
    .card {
      width: 200px;
      height: auto;
    }
    
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-235px * 5)); /* Width of card + margin */
      }
    }
    .about-image {
        width: 100%;
        height: auto;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }
    .about-image img {
        width: 100%;
    }
    .about {
        width: 80%;
    }
    .about p {
        font-size: 18px;
        padding-left: 50px;
        padding-right: 50px;
    }
    .about a {
        padding: 10px 30px;
        margin-top: 20px;
    }
  }


  @media (max-width: 480px) {
    .main-heading-container {
        flex-wrap: wrap;
        margin-top: 0px;
    }
    .intro-section {
        width: 100%;
    }
    .mockup-section {
        width: 100%;
        margin-top: 50px;
    }
    .intro-section h3 {
        font-size: 20px;
        margin-top: 100px;
        margin-left: 20px;
    }
    .intro-section h1 {
        font-size: 40px;
        margin-top: 10px;
        margin-left: 20px;
        padding-right: 30px;
    }
    .intro-section p {
        font-size: 15px;
        line-height: 25px;
        margin-left: 20px;
        padding-right: 30px;
    }
    .download-buttons {
        width: 100%;
        margin-left: 0px;
        justify-content: center;
    }
    .playstore {
        width: 150px;
    }
    .appstore {
        width: 150px;
    }
    .features-container .heading h2 {
        font-size: 25px;
    }
    .features {
        width: 100%;
        border-radius: 50px;
        padding: 25px;
    }
    .feature-txt {
        font-size: 20px;
        font-weight: 600;
    }
    .feature-line {
        font-size: 15px;
        margin-top: 15px;
        line-height: 25px;
    }
    .about-proptelli-frame {
        flex-wrap: wrap;
        width: 90%;
    }
      .about-section h2 {
        font-size: 30px;
      }
      .about-section p {
        font-size: 15px;
    }
    .icons {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
    .points h3 {
        font-size: 20px;
    }
    .points {
        margin-top: 20px;
    }
    .working-steps-container .heading h2 {
        font-size: 30px;
    }
    .working-steps-container {
        margin-top: 50px;
    }
    .steps p {
        font-size: 16px;
    }
    .steps {
        width: auto;
    }
    .insight h3 {
        font-size: 70px;
    }
    .insight p {
        font-size: 16px;
    }
    .download-frame h2 {
        font-size: 30px;
    }
    .download-frame p {
        font-size: 15px;
        padding-left: 10px;
    padding-right: 10px;
    }
    .download-frame h3 {
        font-size: 17px;
    }
    .contact-container .heading h2 {
        font-size: 30px;
    }
    .contact h3 {
        font-size: 20px;
    }
    .contact p {
        font-size: 20px;
    }
    .download-container {
        margin-top: 30px;
        padding: 20px;
    }
    .download-frame {
        width: 90%;
        border-radius: 50px;
        padding: 30px;;
    }
    .contact-frame {
        width: 100%;
    }
    .contact-container {
        margin-top: 50px;
    }
    .contact {
        width: 90%;
        padding: 20px;
        border-radius: 30px;
    }
    .user-insight-container {
        margin-top: 50px;
    }
    .about-section {
        width: 100%;
        margin-top: 0px;
        margin-bottom: 100px;
    }
    .about-image {
        width: 100%;
    }
    .steps-list {
        width: 100%;
    }
    .previews-container {
        margin-top: 0px;
    }
    .carousel-container {
        max-width: 90%;
    }
    .mockup-image {
        width: 85%;
    }
    .about {
        width: 95%;
    }
    .about p {
        font-size: 16px;
        padding-left: 50px;
        padding-right: 50px;
    }
    .about a {
        padding: 10px 30px;
        margin-top: 20px;
        font-size: 14px;
    }
}