/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styling */
body {
    background: linear-gradient(135deg, #f3f6fa, #e3eff9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* Headline Styling */
.headline {
    font-size: 3em; /* Adjusted font size for mobile */
    color: #34495e;
    text-align: center;
    margin-bottom: 20px;
}

/* Main Container */
.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1000px;
    width: 80%;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 20px;
}

/* Left Content Styling */
.left-content {
    flex: 1;
    padding: 20px;
    color: #34495e;
}

.left-content h2 {
    font-size: 1.8em; /* Adjusted font size */
    color: #34495e;
    margin-bottom: 20px;
}

.left-content p {
    color: #6c757d;
    font-size: 1em;
}

/* Right Content Styling */
.right-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.right-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* CTA Button Styling */
.cta-container {
    text-align: center;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #ff6f61;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e05a50;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    /* Stack elements vertically */
    .container {
        flex-direction: column;
        padding: 20px;
    }
    
    /* Center align text */
    .left-content {
        text-align: center;
        padding: 10px;
    }

    /* Adjust font sizes for mobile */
    .headline {
        font-size: 2.5em;
    }

    .left-content h2 {
        font-size: 1.5em;
    }

    .left-content p {
        font-size: 0.9em;
    }

    /* Full width button */
    .cta-button {
        width: 100%;
        padding: 15px 0;
        font-size: 1em;
    }
}
