* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body {
    background-color: #f8f9fa;
    color: #3b3b3b;
    scroll-behavior: smooth;
    cursor: none;
}
a {
    color: #FF4500;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 69, 0, 0.7);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, background-color 0.3s ease;
    z-index: 9999;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(2);
    background-color: rgba(255, 69, 0, 0.4);
}
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header .nav-link {
    color: #6c757d;
    transition: color 0.3s;
}
header .nav-link:hover {
    color: #FF4500;
}
header .link-body-emphasis {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #3b3b3b;
}
header .link-body-emphasis i {
    font-size: 1.5rem;
    margin-right: 8px;
}
footer {
    background-color: #3b3b3b;
    color: #adb5bd;
    padding: 40px 0;
}
footer a {
    color: #adb5bd;
}
footer a:hover {
    color: #fff;
}
footer .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
footer .footer-logo i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #FF4500;
}
footer .footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
footer .footer-contact i {
    margin-right: 10px;
}
footer h5 {
    color: #fff;
    margin-bottom: 20px;
}
footer .list-unstyled li {
    margin-bottom: 10px;
}
footer .list-unstyled li a {
    color: #adb5bd;
}
footer .list-unstyled li a:hover {
    color: #fff;
}
footer .border-top {
    border-top: 1px solid #495057 !important;
}
@media (max-width: 768px) {
    footer .footer-contact p {
        flex-direction: column;
        align-items: flex-start;
    }
}
#icon-grid h2, #icon-grid h3 {
    color: #FF4500;
    font-weight: 700;
    margin-bottom: 20px;
}
#icon-grid p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
form .form-label {
    font-weight: 500;
}
form textarea {
    resize: vertical;
}
form button {
    width: 100%;
}

.btn-outline-primary {
  color: #FF4500;
  border-color: #FF4500;
}
.btn-outline-primary:hover {
  background-color: #FF4500;
  border-color: #FF4500;
  color: white;
}
.btn-primary {
    background-color: #FF4500;
    border-color: #FF4500;
    color: white;
}
.btn-primary:hover {
    background-color: #b43000;
    border-color: #b43000;
    color: white;
}