.btn {
	display: inline-block;
	padding: 0.8rem 1.8rem;
	border-radius: 50px;
	font-weight: 600;
	transition: var(--transition);
	cursor: pointer;
}

.btn-primary {
	background: var(--accent);
	color: white;
}

.btn-primary:hover {
	background: #c0392b;
	color: white;
	transform: translateY(-3px);
}

.btn-outline {
	border: 2px solid white;
	color: white;
}

.btn-outline:hover {
	background: white;
	color: var(--primary);
	transform: translateY(-3px);
}

.columns-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
	margin-top: 20px;
    margin-bottom: 20px;
	text-align: center;
	justify-content: center; /* horizontal centering */
    align-items: center; 
}

.column {
    flex: 1;
    background: platinum;
    border-radius: 10px;
	box-shadow: var(--shadow);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0; /* Prevents flex items from overflowing */
}

.column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Media Query for Tablets and Mobile Devices */
@media (max-width: 991px) {
    .columns-wrapper {
        flex-direction: column;
		margin-top: 10px;
		margin-bottom: 10px;
        gap: 0px; /* Reduce gap for smaller screens */
    }
    
    .column {
        width: 90%; /* Ensure full width */
        padding: 15px; /* More reasonable padding for mobile */
        flex: none; /* Disable flex grow/shrink */
    }
}


