/* Clean and Professional Site CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Utility Classes */
.text-primary {
    color: #667eea !important;
}

.bg-primary {
    background-color: #667eea !important;
}

.btn-primary {
    background-color: #667eea !important;
    border-color: #667eea !important;
}

.btn-primary:hover {
    background-color: #764ba2 !important;
    border-color: #764ba2 !important;
}

.btn-outline-primary {
    color: #667eea !important;
    border-color: #667eea !important;
}

.btn-outline-primary:hover {
    background-color: #667eea !important;
    color: white !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-btn,
    footer {
        display: none;
    }
}
