.connect-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2D2B55;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.captivating-text {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.icons-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.icon {
    font-size: 2.5rem;
    color: #FFC107;
    transition: all 0.3s ease;
}

.icon:hover {
    transform: scale(1.2);
    filter: brightness(1.1);
}

.icon-label {
    color: #555;
    font-size: 1rem;
    font-weight: 500;
}

.cta-section {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 3rem auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
}

.cta-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #2D2B55;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: #6C63FF;
    color: white;
}

.cta-button.primary:hover {
    background: #5a52e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #6C63FF;
    border-color: #6C63FF;
}

.cta-button.secondary:hover {
    background: #6C63FF;
    color: white;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    color: #6C63FF;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: #6C63FF;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .captivating-text {
        font-size: 1.1rem;
    }

    .icons-container {
        gap: 2rem;
    }

    .icon {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 200px;
        text-align: center;
    }
}