/* Custom CTA Section */
.custom-cta {
    background: linear-gradient(135deg, #fafafa 0%, #f8f5f7 100%);
    padding: 2rem 0;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.custom-cta.animate {
    opacity: 1;
    transform: translateY(0);
}

.custom-cta .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.custom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.custom-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #222;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.custom-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.custom-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.custom-features span {
    font-size: 1rem;
    color: #C27BA0;
    font-weight: 500;
}

.custom-btn {
    display: inline-block;
    background: #C27BA0;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.custom-btn:hover {
    background: #a66889;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 123, 160, 0.3);
}

.custom-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    border-radius: 12px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.custom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .custom-cta {
        padding: 3rem 0;
        margin: 2rem 0;
    }
    
    .custom-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .custom-text h2 {
        font-size: 2rem;
    }
    
    .custom-image {
        height: 300px;
        order: -1;
    }
    
    .custom-image img {
        max-width: 100%;
        height: auto;
    }
}