/* Service Philosophy Page Styles */

.philosophy-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.philosophy-container {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.philosophy-content {
    flex: 1;
}

.philosophy-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-image img {
    width: 100%;
    height: auto;
    display: block;
}

.philosophy-title {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    color: #222;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.philosophy-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: #c41e3a; /* Changed to red */
}

.philosophy-text {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.philosophy-values {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 30px;
}

.value-card {
    flex: 1 0 calc(50% - 15px);
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8e9eb; /* Light red background */
    border-radius: 50%;
    margin-bottom: 20px;
}

.value-icon i {
    font-size: 24px;
    color: #c41e3a; /* Changed to red */
}

.value-title {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    color: #222;
    margin-bottom: 15px;
}

.value-description {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.quote-section {
    background-color: #c41e3a; /* Changed to red */
    padding: 80px 0;
    color: white;
    text-align: center;
    margin: 60px 0;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-text {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
}

.quote-author {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .philosophy-container {
        flex-direction: column;
    }

    .philosophy-image {
        order: -1;
    }

    .value-card {
        flex: 1 0 100%;
    }
}
