Pilipinas Taekwondo
body {
margin: 0;
font-family: “Arial”, sans-serif;
background-color: #ffffff;
color: #111;
line-height: 1.6;
}
header {
background: #ffffff;
border-bottom: 2px solid #000;
padding: 20px 40px;
display: flex;
justify-content: space-between;
align-items: center;
}
header h1 {
margin: 0;
font-size: 22px;
letter-spacing: 2px;
}
nav a {
margin-left: 20px;
text-decoration: none;
color: #000;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
.hero {
text-align: center;
padding: 100px 20px;
}
.hero h2 {
font-size: 42px;
margin-bottom: 10px;
letter-spacing: 3px;
}
.hero p {
font-size: 18px;
font-style: italic;
}
.section {
padding: 60px 40px;
max-width: 1000px;
margin: auto;
}
.section h3 {
font-size: 26px;
border-bottom: 2px solid #000;
display: inline-block;
margin-bottom: 20px;
}
.values {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
text-align: center;
}
.value-box {
border: 1px solid #000;
padding: 20px;
}
.programs {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
}
.program-box {
border: 1px solid #000;
padding: 20px;
}
footer {
background: #000;
c
