/* Pulse animation keyframes */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

/* Common styles for all sections */
section {
    width: 90%;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    box-sizing: border-box;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Add pulse animation only to the About section */
section#about {
    animation: pulse 2.5s infinite ease-in-out;
}

/* Logo section adjustments */
section#logo {
    text-align: center;
    background: transparent; /* Remove background to match original if needed */
    box-shadow: none;
    padding: 20px;
}

/* Responsive images inside all sections */
section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Contact section with lighter text and simplified styling */
section#contact {
    text-align: center;
    color: #666;
    background: transparent;
    box-shadow: none;
    padding: 10px 20px;
    margin: 20px auto;
    max-width: 600px;
}

/* Responsive tweaks for small screens */
@media (max-width: 400px) {
    section {
        padding: 10px;
        margin: 20px auto;
    }
}

