.site-header {
    height: 3cm;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;

    background-color: #0a0a0a;   /* change if needed */
    color: #ffffff;

    border-bottom: 1px solid #ddd;
}
.main-content {
    padding: 50px 8%;
    background-color: #f9f9f9;
    font-family: Arial, Helvetica, sans-serif;
}

/* Intro Section */
.intro {
    text-align: center;
    margin-bottom: 50px;
}

.intro h1 {
    font-size: 32px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: #222;
}

.intro p {
    font-size: 16px;
    color: #555;
    max-width: 900px;
    margin: auto;
    line-height: 1.7;
}
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

/* Each card */
.service-card {
    flex: 1 1 250px;   /* grow | shrink | base width */
    max-width: calc(25% - 25px);
}

/* Tablet */
@media (max-width: 1024px) {
    .service-card {
        max-width: calc(50% - 25px);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .service-card {
        max-width: 100%;
    }
}


/* Service Card */
.service-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h2 {
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    color: #111;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.contact-section {
    padding: 60px 8%;
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-section h2 {
    text-align: center;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #222;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.6;
}

/* Wrapper */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Info box */
.contact-info {
    flex: 1 1 300px;
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 10px;
}

.contact-info p {
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
}

/* Form */
.contact-form {
    flex: 1 1 300px;
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #0a0a0a;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 6px;
}

.contact-form button:hover {
    background-color: #333333;
}
.site-footer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 30px 8%;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-content p {
    margin: 8px 0;
    font-size: 14px;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 5px;
}

.site-footer a:hover {
    text-decoration: underline;
    color: #dddddd;
}

copyright {
    font-size: 13px;
    color: #cccccc;
}
