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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Body Inside Container */
.body-inside {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
}

/* Wrapper */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
}

/* Content Styling */
#content1, #content2 {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#content1 h1, #content2 h1 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

#content1 p, #content2 p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

#content1 img, #content2 img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* About Us Content */
#content2 p strong {
    font-size: 1.3rem;
    color: #333;
}

/* Responsive Styling */
@media (max-width: 768px) {
    /* Stack images and text vertically */
    #content1, #content2 {
        padding: 15px;
    }

    #content1 h1, #content2 h1 {
        font-size: 1.8rem;
    }

    #content1 p, #content2 p {
        font-size: 1rem;
    }

    #content1 img, #content2 img {
        width: 80%;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    /* Smaller adjustments for very small screens */
    #content1 h1, #content2 h1 {
        font-size: 1.5rem;
    }

    #content1 p, #content2 p {
        font-size: 0.9rem;
    }

    #content1 img, #content2 img {
        width: 100%;
    }
}

/* Call to Action Button */
body-inside .cta-button {
    display: inline-block;
    background-color: #ff8c00;
    color: #fff;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

body-inside .cta-button:hover {
    background-color: #e07b00;
}

.logo-mob{
    color: rgb(231, 200, 30);
    margin-bottom: 20px;
}