body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.text-section {
    flex: 1;
    padding: 20px;
}

.text-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.text-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.text-section .button {
    background-color: #2bb673;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
}



.new-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-color: #ffffff; /* Change this color as needed */
}

.new-section h2 {
    font-size: 2em;
    font-weight: 500;
    color: #222222; /* Customize the text color if needed */
}











.content-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    background-color: #ffffff; /* Change background color if needed */
}

.image-container {
    flex: 1;
    padding: 20px;
}

.image-container img {
    width: 90%;
    height: auto;
    border-radius: 10px;
}

.text-container {
    flex: 1;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.text-container p {
    font-size: 1.1em;
    line-height: 1.6em;
    color: #333333; /* Customize text color if needed */
    margin-bottom: 15px;
}






.button-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cta-button {
    background-color: #22b573; /* Green color for the button */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 20px; /* Rounded corners */
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1a8d57; /* Darker shade for hover effect */
}