/* General Section Styling */
.about-opulence {
	text-align: center;
	margin: 0;
	max-width: 1200px;
	padding: 0 20px;
	width: calc(100% - 80px);
	padding-top: 20px;
	font-family: system-ui;
	font-weight: 200;
    margin-bottom: 60px;
}

/* Section Header */
.section-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0;
    margin-top: 0;
}

.section-header p {
    font-size: 1.2rem;
	color: var(--dim-text-color);
	margin-top: 10px;
	margin-bottom: 30px;
}

/* Section Description */
.section-description p {
	font-size: 1.2rem;
	margin-bottom: 40px;
	color: var(--text-color);
	line-height: 1.7;
}

/* Feature Blocks */
.feature-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
    border-radius: 20px;
    background-color: var(--contrast-item-background);
    overflow: hidden;
}

/* Alternate Order for Every Other Block */
.feature-block.reverse {
    flex-direction: row-reverse;
}

/* Feature Text */
.feature-text {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.feature-text h3 {
    font-size: 1.8rem;
    color: #4a90e2;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 600;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--dim-text-color);
    line-height: 1.7;
    white-space: break-spaces;
}

/* Feature Image */
.feature-image {
    flex: 1;
    overflow: hidden;
    height: 300px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Image Hover Effect */
.feature-image img:hover {
    transform: scale(1.05);
}

/* Call to Action */
.call-to-action {
	margin: 0;
	padding: 30px;
	background-color: #4a90e2;
	border-radius: 20px;
	color: white;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	text-align: center;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.call-to-action h3 {
    font-size: 1.8rem;
    margin: 0;
}

.call-to-action p {
    font-size: 1.2rem;
	margin: 0;
	line-height: 1.6;
	max-width: 740px;
    text-wrap-style: pretty;
}

.cta-button {
    background-color: white;
    color: #4a90e2;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.feature-text p strong,
.feature-text p em,
.section-description p strong {
    margin-left: 5px;
    margin-right: 5px;
    font-style: normal;
}

@media (max-width: 900px) {
    .section-header h2 {
        font-size: 1.7rem;
    }

    .section-description p,
    .call-to-action p {
        font-size: 1rem;
        line-height: 1.4;
    }
    .feature-text h3,
    .call-to-action h3 {
        font-size: 1.4rem;
    }

    .feature-text p {
        font-size: 1rem;
    }

}
@media (max-width: 768px) {
    .call-to-action {
        padding: 20px;
    }

    .cta-button {
        font-size: 1rem;
    }
    .feature-block {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }
    .feature-block.reverse {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .about-opulence {
		padding: 20px;
		width: calc(100% - 40px);
    }

    .feature-image {
        height: 230px;
		flex: unset;
		width: 100%;
    }
}