*{ margin: 0;
     padding: 0;
      box-sizing: border-box; 
}

body{ background: black;
    color: white;
    font-family: serif;
    margin: 0;
    padding: 0; 
}

/* NAVBAR */ 
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 2px solid white;
    background-color: #333;
}

.navbar a{ text-decoration: none; 
    color: white; 
    font-size: 20px;
    font-style: Sans-serif; 
    font-weight: bold; 
    padding: 5px 20px; 
    border-radius: 3px; 
    transition: background 0.2s, color 0.1s; 
}
.navbar a:hover {
    background: brown; 
    color: white; 
}

.logo img{ width: 110px;
    height: auto; 

}

/* MAIN CONTAINER */ 

.container{ display: flex;
     justify-content: space-between;
      align-items: center;
       padding: 70px 80px;
        gap: 50px; 
}

/* LEFT SIDE */

.text-section{ flex: 1;
}

.text-section h1{ font-size: 60px;
     margin-bottom: 20px;
}
.text-section p{ font-size: 32px;
     margin-bottom: 40px;
}

/* BUTTONS */

.buttons{ display: flex;
     gap: 135px;
      margin-bottom: 50px; 
}

.buttons button, .cta, .navbar button{ padding: 12px 30px;
     background: transparent;
      border: 2px solid white;
       color: white;
        cursor: pointer;
         border-radius: 8px;
          font-size: 18px; 
          
} 

.buttons button:hover, .cta:hover, .navbar button:hover{ background: white; color: black; 
}

 /* STATS */ 
 
.stats{ display: flex;
     gap: 60px;
      margin-bottom: 50px;
       font-size: 22px;
} 

/* CTA BUTTON */

.cta{
    margin-left: 210px;
}

/* RIGHT SIDE IMAGE */

 .image-section{ flex: 1;
     display: flex;
      justify-content: center;
}

.image-section img{ width: 450px;
     height: 450px;
      object-fit: cover;
       border-radius: 20px;
        box-shadow: 0 0 20px rgba(255,255,255,0.2); 
}

/* MOBILE RESPONSIVE */
@media screen and (max-width: 768px) {

    .navbar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }

    .container {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .text-section h1 {
        font-size: 36px;
    }

    .text-section p {
        font-size: 20px;
    }

    .buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .buttons button {
        width: 80%;
    }

    .stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        font-size: 18px;
    }

    .cta {
        margin-left: 0;
        width: 80%;
    }

    .image-section img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    .navbar a {
        display: block;
        padding: 10px;
        font-size: 18px;
    }
    @media screen and (max-width: 768px){

    body{
        overflow-x: hidden;
    }

    .container{
        flex-direction: column;
        padding: 20px;
    }

    .text-section h1{
        font-size: 40px;
    }

    .text-section p{
        font-size: 20px;
    }

    .buttons{
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .cta{
        margin-left: 0;
    }

    .image-section img{
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    .stats{
        flex-wrap: wrap;
        justify-content: center;
    }
}
}