/*
 Theme Name: Lumora Child
 Theme URI: https://lumoraarchitects.com
 Description: Lumora custom child theme for smart repair platform.
 Author: Boyou (柏文)
 Template: astra
 Version: 1.0.0
*/

/* 下面開始才是你的 CSS */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #ddd;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}

.hero {
    text-align: center;
    padding: 120px 20px;
    background: #222;
    color: white;
}

.hero .cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #ffcc00;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
}

.services {
    padding: 50px 20px;
    text-align: center;
}

.service-box {
    background: white;
    margin: 20px auto;
    padding: 20px;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.footer {
    text-align: center;
    padding: 20px;
    background: #eee;
    margin-top: 40px;
}