*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Arial' , sans-serif;
}

/*back button*/
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d1837c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: #b15b52;
    transform: scale(1.05);
}


body{
    background-color: #F8E1DB;
}

.hero, .additional-content{
    overflow: hidden;
}

.heading h1{
    color:black;
    font-size: 45px;
    text-align: center;
    margin-top: 30px;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 65px auto;
}


.hero-content{
    flex: 1;
    width: 600px;
    margin: 0 25px;
    animation: fadeInUp 2s ease;
}

.hero-image{
    flex: 1;
    width: 600px;
    margin: auto;
}

.hero-content h2{
    font-size: 35px;
    margin-bottom: 20px;
    color: darkblue;
}

.hero-content p{
    font-size: 21px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: black;
}

.hero-content .btn{
    font-size: 17px;
    padding: 10px 20px;
    background-color: rgb(204, 56, 56);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-content .btn:hover{
    background-color: rgb(233, 139, 139);
    transform: scale(1.1);
}

img{
    width: 110%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    animation: fadeInRight 2s ease;
}
.highlight {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color:rgb(210, 211, 211);
    border-radius: 10px;
    animation: fadeInUp 2s ease;
}
.additional-content{
    margin-top: 20px;
}
.additional-content h2 {
    font-size: 35px;
    margin-bottom: 20px;
    color: blueviolet;
    text-align: center;
}

.additional-content p {
    font-size: 21px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: black; 
    padding: 0 100px; 
}
/*back button*/
.cont{
    margin-left: 10px;
}
.cont button{
    height:40px;
    width:100px;
    margin-top: 20px;
    text-decoration: none;
    background-color: #ba6a62;;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
}
.cont button:hover{
    background-color: #d96a60;
    color: white;
}
.cont a{
all:unset;
}
/* Small devices (phones, less than 600px) */
@media screen and (max-width: 600px) {
    .heading h1 {
        font-size: 35px;
        margin-top: 20px;
    }
    
    .container {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-content, .hero-image {
        width: 100%;
        margin: 20px 0;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-image img {
        width: 100%;
    }
    
    .btn {
        font-size: 16px;
        padding: 8px 16px;
    }
    
    .additional-content p {
        padding: 0 20px;
    }
}

/* Medium devices (tablets, 600px to 900px) */
@media screen and (min-width: 600px) and (max-width: 900px) {
    .heading h1 {
        font-size: 40px;
    }
    
    .container {
        flex-direction: column;
        width: 90%;
        padding: 0 30px;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 20px;
    }
    
    .btn {
        font-size: 18px;
        padding: 10px 18px;
    }
    
    .hero-image img {
        width: 100%;
    }
    
    .additional-content p {
        padding: 0 40px;
    }
}

/* Large devices (desktops, more than 900px) */
@media screen and (min-width: 900px) {
    .container {
        flex-direction: row;
        width: 80%;
        padding: 0 50px;
    }
    
    .hero-content {
        width: 50%;
    }
    
    .hero-image {
        width: 50%;
    }
    
    .hero-image img {
        width: 110%;
    }
    
    .hero-content h2 {
        font-size: 35px;
    }
    
    .hero-content p {
        font-size: 21px;
    }
    
    .btn {
        font-size: 20px;
        padding: 12px 20px;
    }
    
    .additional-content p {
        padding: 0 100px;
    }
}