.instagram-section {
    position: relative;
    overflow: hidden;
}

.instagram-content {
    padding: 3rem 0;
}

.instagram-icon {
    font-size: 3.5rem;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
    color: #fff;
}

.instagram-follow-btn:active {
    transform: translateY(0);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .instagram-content {
        padding: 2rem 0;
    }

    .instagram-icon {
        font-size: 2.5rem;
    }

    .instagram-follow-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
} 