/* styles.css */

/* 기본 스타일 초기화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* 헤더 스타일 */
header {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

header h1 {
    text-align: center;
    margin: 0;
    font-size: 2em;
}

nav ul {
    padding: 0;
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

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

nav ul li a:hover {
    text-decoration: underline;
}

/* 섹션 스타일 */
section {
    padding: 20px 0;
}

section#home {
    background: #f4f4f4;
    text-align: center;
}

section#home h2 {
    font-size: 2.5em;
}

section#home p {
    font-size: 1.2em;
    margin: 20px 0;
}

section#home .btn {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

section#home .btn:hover {
    background: #555;
}

section#services {
    background: #e2e2e2;
}

section#services .service {
    padding: 20px;
    margin: 20px 0;
    background: #fff;
    border-radius: 5px;
}

section#services h2 {
    text-align: center;
}

section#about {
    background: #f4f4f4;
}

section#about h2, section#contact h2 {
    text-align: center;
}

/* 폼 스타일 */
form {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form div {
    margin-bottom: 10px;
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input[type="text"], form input[type="email"], form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background: #555;
}

/* 푸터 스타일 */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
