.kite-office-container {
display: flex;
width: 100%;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
overflow: hidden;
margin: 20px 0;
background: #fff;
}
.kite-office-image {
flex: 0 0 500px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.kite-office-image img {
width: 500px;
height: 100%;
object-fit: cover;
object-position: center;
}
.kite-office-content {
flex: 1;
padding: 30px 40px;
display: flex;
flex-direction: column;
justify-content: center;
}
.kite-office-heading {
margin: 0 0 15px 0;
font-size: 2em;
font-weight: bold;
color: #333;
}
.kite-office-description {
margin-bottom: 25px;
line-height: 1.7;
color: #555;
font-size: 1.05em;
}
.kite-office-button-wrapper {
display: inline-block;
align-self: flex-start;
}
.kite-office-button-wrapper a {
text-decoration: none !important;
}
.kite-office-button {
display: inline-block;
padding: 12px 24px;
background-color: #2A66B0;
color: #fff !important;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
text-align: center;
transition: background-color 0.3s ease;
cursor: pointer;
}
.kite-office-button-wrapper a:hover .kite-office-button {
background-color: #1e4a7f;
}
@media (max-width: 900px) {
.kite-office-container {
flex-direction: column;
}
.kite-office-image {
flex: 0 0 auto;
width: 100%;
}
.kite-office-image img {
width: 100%;
height: 300px;
}
.kite-office-content {
padding: 25px;
}
.kite-office-heading {
font-size: 1.6em;
}
.kite-office-button-wrapper {
align-self: stretch;
}
.kite-office-button {
display: block;
width: 100%;
text-align: center;
}
}
@media (max-width: 600px) {
.kite-office-image img {
height: 250px;
}
.kite-office-content {
padding: 20px;
}
.kite-office-heading {
font-size: 1.4em;
}
.kite-office-description {
font-size: 1em;
}
}