/* General Body Styles */
body {
    background-color: #f7f3e9; /* Light, warm background */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/background\ for\ contact\ page.jpg') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero-section p {
    font-size: 1.25rem;
}

/* Services Section */
.services-section {
    background-color: #f7f3e9;
}

.card {
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-icon {
    font-size: 3rem;
    color: #faaa09; /* Your brand's accent color */
    margin-bottom: 1rem;
}

.card-title {
    font-weight: bold;
    color: #333;
}

.card-text {
    color: #666;
    font-size: 0.95rem;
}

.btn-warning {
    background-color: #faaa09;
    border-color: #faaa09;
    color: black;
    font-weight: 500;
}

.btn-warning:hover {
    background-color: #e09608;
    border-color: #e09608;
}

/* Footer */
footer {
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-content p {
    margin: 0;
    padding: 5px 0;
}

.footer-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-content a {
    color: #ddd;
    text-decoration: none;
}

.footer-content a:hover {
    color: #fff;
}

.footer-credits {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 10px;
}