.ive-text {
	font-family: 'Speck-Display';
	color: #D6482F;
}
.text-head-bold {
	font-size: 40px;
	font-weight: bold;
	line-height: 1.2;
}
.motto {
	text-decoration: underline;
	color: #5B836D;
}
.font-bold {
	font-weight: bold;
}

#show-cases {
    position: relative;
    overflow: hidden;
    min-height: 500px;
	width: calc(100% - 50px);
    max-width: calc(1320px - 20px);
	margin: 0 auto;

    /* background-color: #f0f0f0; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #000;
}

/* Show Case Item Styles */
.show-case-item {
    margin-bottom: 40px;
    padding: 30px 0;
    overflow: hidden;
}

.show-case-item .six.columns {
    float: left;
	width: 50%;
    position: relative;
}

.show-case-item-title {
    font-size: 36px;
	line-height: 0.9;
    font-weight: 700;
    color: #212121;
    margin-bottom: 15px;
    font-family: 'Nunito', 'Varela Round', 'Quicksand', sans-serif;
    letter-spacing: -0.5px;
}

.show-case-item-description {
    font-size: 16px;
    line-height: 1.6;
    color: #434343;
	text-align: left;
}

.show-case-item-description p {
	padding: 0 25px;
    margin: 0 0 15px 0;
}

.show-case-item-description ul {
    list-style: none;
    padding: 0 25px;
    margin: 20px 0 25px 0;
}

.show-case-item-description li {
    position: relative;
    padding: 8px 0 8px 30px;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    font-weight: 500;
}

.show-case-item-description li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.show-case-item-image {
    text-align: center;
}

.show-case-item-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Modern Button Styles */
.show-case-item-description .button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
	width: auto;
}

.show-case-item-description .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.show-case-item-description .button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
    .show-case-item .six.columns {
        float: none;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .show-case-item-image {
        margin-bottom: 20px;
    }
    
    .show-case-item-description .button {
        width: auto;
        text-align: center;
    }
}
