:root {
    --primary-color: #222222;
    --secondary-color: #444444;
    --accent-color: #007bff;
    --background-color: #f5f5f5;
    --text-color: #222222;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.site-header {
    width: 100%;
    height: auto;
    position: relative;
    padding: 5px;
}

.header-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 15px;
}

.menu-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-button span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: 0.3s;
}

.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-color);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    padding-top: 100px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.side-menu.open {
    transform: translateX(0);
}

.side-menu a {
    display: block;
    padding: 20px 30px;
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.2s;
}

.side-menu a:hover {
    background-color: var(--secondary-color);
}

main {
    min-height: 60vh;
}

.hero {
    text-align: center;
    padding: 80px 24px 70px;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.hero-tagline {
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.01em;
}

.hero-intro {
    max-width: 720px;
    margin: 0 auto 36px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

.content-section {
    max-width: 1100px;
    margin: auto;
    padding: 80px 20px;
}

.content-section h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.content-section h2 {
    font-size: 2rem;
    margin: 50px 0 30px;
}

/* Sets spacing for paragraphs inside your content area */
.content-section p {
    margin-bottom: 24px; /* Creates the FIRST and THIRD space gaps */
    line-height: 1.6;
}

/* Fixes the list formatting and creates the parent margins */
.content-section ul {
    list-style-position: inside; /* Pulls bullet dots completely inline with text start */
    padding-left: 0;             /* Flushes the text to the left margin border */
    margin-bottom: 24px;         /* Helps hold structural spacing */
}

/* Creates the SECOND space gap between individual list items */
.content-section li {
    margin-bottom: 14px;         /* Pushes the two services apart cleanly */
    line-height: 1.6;
}

.card-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.card h3 {
    margin-bottom: 15px;
}

.primary-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

.primary-button:hover {
    opacity: 0.85;
}

.contact-form {
    max-width: 600px;
    margin-top: 40px;
}

.contact-form label {
    display: block;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.form-message {
    max-width: 600px;
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: 10px;
    font-weight: 600;
}

.form-message--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

footer {
    text-align: center;
    padding: 30px;
    background-color: var(--primary-color);
    color: var(--white);
}

@media (max-width: 600px) {
    .side-menu {
        width: 80%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .content-section {
        padding: 50px 20px;
    }

    .card {
        min-width: 100%;
    }
}
