/* Pinterest Quote Section Styles */
.pinterest-quote-section {
    padding: 0;
    margin-top: -100px; /* Creates overlap with the hero section */
    position: relative;
    z-index: 10;
    overflow: visible;
}

.pinterest-container {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background-color: #0A4697;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pinterest-image {
    flex: 1;
    margin-bottom: 30px;
}

.pinterest-photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pinterest-content {
    flex: 1;
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: none;
}

.pinterest-quote {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.pinterest-description {
    font-family: 'Poppins', sans-serif;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.pinterest-cta-btn {
    display: inline-block;
    background-color: #F3471F;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    align-self: center;
    max-width: 200px;
}

.pinterest-cta-btn:hover {
    background-color: #d53a18;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 71, 31, 0.3);
}

@media (min-width: 768px) {
    .pinterest-container {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }
    
    .pinterest-image {
        margin-bottom: 0;
    }
    
    .pinterest-content {
        text-align: left;
    }
    
    .pinterest-cta-btn {
        align-self: flex-start;
    }
}
