:root {
    --primary-color: #3b5998; /* Facebook blue */
    --secondary-color: #f7f7f7;
    --text-color: #333;
    --border-color: #ddd;
    --font-family: Arial, sans-serif;
    --spacing: 20px;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
}

header, footer, .hero, nav ul li a, .quick-links a, .social-media a, .contact-form button {
    color: white;
}

header, footer {
    background: var(--primary-color);
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("assets/hero-image.jpg") no-repeat center center/cover;
}

/* ========== Padding ========== */

.hero {
    padding: 100px 20px;
}

section, .contact-info, .contact-form, .call-to-action {
    padding: 40px 20px;
}

footer, .service-card {
    padding: 20px 20px;
}

header, .cta-button, .contact-form button {
    padding: 10px 20px;    
}

/* ========== Padding ========== */

/* ========== Text Align ========== */

section, header, footer, .contact-info, .contact-form, .hero {
    text-align: center;
}
/* ========== Text Align ========== */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: var(--spacing);
}

nav ul li a {
    text-decoration: none;
}

.hero h1 {
    font-size: 36px;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    margin-top: var(--spacing);
    display: inline-block;
}

.services-overview, .service-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 0 1 30%; /* Adjusts to 3 cards per row */
    margin: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 10px;
}

.testimonial, .blog-post, .team-member {
    margin: 20px 0;
}

.quick-links a, .social-media a {
    margin: 0 10px;
    text-decoration: none;
}

.contact-info {
    margin-top: 10px;
}

.values ul {
    list-style-type: none;
    padding: 0;
}

.values li {
    margin: 10px 0;
}

.call-to-action {
    background: var(--secondary-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.contact-form button {
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #2d4373; /* Darker blue on hover */
}
