/* Global Styles */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    color: #f5f5f5;
    background: linear-gradient(45deg, #0a0a0a, hsl(209, 40%, 13%));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
header {
    background-color: #0a0a0a;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e2c418;
}

header h1 {
    color: #e2c418;
    font-size: 1.8em;
}

nav a {
    color: #f5f5f5;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #e2c418;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    color: #e2c418;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.3em;
    color: #dcdcdc;
}

.buttons a {
    color: #0a0a0a;
    background-color: #e2c418;
    padding: 12px 25px;
    margin: 10px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.buttons a:hover {
    background-color: #b89f15;
}

/* Footer Styles */
footer {
    background-color: #111;
    color: #999;
    text-align: center;
    padding: 15px;
    font-size: 0.95em;
    border-top: 2px solid #e2c418;
}

/* Additional Global Styles */
main {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Section Styles */
.about, .highlights, .intro, .service-details, .additional-info, .contact-intro, .contact-info {
    margin: 30px 0;
}

.highlight-cards {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    flex-wrap: wrap;
}

.card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
}

.card h4 {
    color: #e2c418;
    margin-bottom: 10px;
}

.card p {
    color: #d3d3d3;
    font-size: 1em;
}

/* Contact Form */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 12px;
    font-size: 1em;
    background-color: #333;
    color: #f5f5f5;
    border: 1px solid #555;
    border-radius: 5px;
}

input:focus, textarea:focus {
    border-color: #e2c418;
    outline: none;
}

button {
    background-color: #e2c418;
    color: #0a0a0a;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #b89f15;
}
