/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Graphik Web', Helvetica, Arial, sans-serif;
    background-color: #f1f1f1; /* Set a background color if needed */
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 960px; /* Set a maximum width of 960px */
    width: 70%; /* Set to 70% of the browser width */
    margin: 0 auto; /* Center horizontally */
}

.header {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align the header to the left */
}

.image-container {
    width: 40%; /* Reduce the size of the image by 30% */
    padding: 20px;
    overflow: hidden; /* Hide the clipped part of the image */
}

.image-container img {
    max-width: 100%;
    height: auto;
    clip-path: inset(10px 0 10px 0); /* Clip 10px from top and bottom */
}


.text-container {
    width: 70%; /* Adjust the width for text content */
}

.main-heading {
    color: #4c5050;
    font-weight: 500;
    font-size: 3.2em; /* Double the font size for main-heading */
    margin-bottom: 10px; /* Double the space between main-heading and sub-heading */
}

.sub-heading {
    color: #b2b6b6;
    font-weight: 400;
}

.sub-sub-heading {
    color: #b2b6b6;
    font-weight: 400;
    font-size: 90%; /* Set font size to 60% of the .sub-heading */
}

.content-heading {
    color: #4c5050;
    font-weight: 400;
    font-size: 1.9em; /* Reduce the font size of content-heading by 40% */
    margin-top: 20px; /* Double the space between content-heading and content-text */
}

.content-text {
    font-size: 1em;
    color: #7d8485;
    line-height: 1.5; /* 50% more vertical spacing */
    margin-top: 8px;
}

a {
    color: #4c5050; /* Set link color similar to heading color */
    text-decoration: none;
}