body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

.section {
    min-height: 100vh;
    width: 100%;
    padding: 2rem;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    opacity: 0;
    transform: translateX(50px);
    animation: slideFromRight 1s ease forwards;
}

.about-image {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideFromLeft 1s ease forwards;
}

.about-text {
    opacity: 0;
    transform: translateY(50px);
    animation: slideFromBottom 1s ease forwards;
}

@keyframes slideFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromBottom {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}
