h2 { color: navy; }
h2, h3 { text-align: center; }
h2, h3, p { background-color: lightgray; }
ul li {
margin: 10px;
}
<style>
#container > ul {
border: 1px solid blue
}
</style>
</head>
<body>
<section id="container">
<h1>예약 방법 및 요금</h1>
<ul>
<li>직접 통화</li>
<li>문자 남기기</li>
</ul>
<ul>
<li>1인 : 40,000원</li>
<li>2인 : 60,000원</li>
<li>3인 : 80,000원</li>
<li>4인 : 100,000원</li>
</ul>
</section>
</body>

#E+F{ margin: 0 auto; width: 1080px; }E의 다음 형제 요소 F 하나만 선택
<style type="text/css">
h1 + ul { /* h1의 요소 다음의 첫번째 ul요소에 적용할 스타일 */
color: blue;
font-weight: bold;
}
</style>
</head>
<body>
<section id="container">
<h1>예약 방법 및 요금</h1>
<ul>
<li>직접 통화</li>
<li>문자 남기기</li>
</ul>
<ul>
<li>1인 : 40,000원</li>
<li>2인 : 60,000원</li>
<li>3인 : 80,000원</li>
<li>4인 : 100,000원</li>
</ul>
</section>
</body>

#E~F{ margin: 0 auto; width: 1080px; }E의 다음 형제 요소 F 모두 선택
<style type="text/css">
h1 ~ ul { /* h1의 요소 다음의 첫번째 ul요소에 적용할 스타일 */
color: blue;
font-weight: bold;
}
</style>
</head>
<body>
<section id="container">
<h1>예약 방법 및 요금</h1>
<ul>
<li>직접 통화</li>
<li>문자 남기기</li>
</ul>
<ul>
<li>1인 : 40,000원</li>
<li>2인 : 60,000원</li>
<li>3인 : 80,000원</li>
<li>4인 : 100,000원</li>
</ul>
</section>
</body>
