/* Custom styles for AVD Group */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Remove default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Links styling */
a {
    text-decoration: none;
    color: inherit;
}

/* Images responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container styles */
.container {
    width: 100%;
    margin: 0 auto;
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Utility classes */
.no-scroll {
    overflow: hidden;
}

/* Print styles */
@media print {
    body {
        background: white;
        color: black;
    }
}
