/* Services Page Styles */
.services-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    text-align: center;
}

.not-found {
    max-width: 600px;
    padding: 20px;
    
}

.not-found h1 {
    font-size: 4rem;
    color: #ff6347;
    margin-bottom: 20px;
}

.not-found p {
    font-size: 1.2rem;
    color: #ff7b00;
    font-weight: bold;
    margin-bottom: 30px;
}

.home-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4682b4;
    color: whitesmoke;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    box-shadow: 10px 10px 14px black;
}

.home-link:hover {
    background-color: #00b3ff;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .not-found h1 {
        font-size: 3rem;
    }
    
    .not-found p {
        font-size: 1rem;
    }
}
