Giới thiệu Nội Thất Tân Trường Giang.
/* About Page Styles */
.about-page * {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: ‘Roboto’, sans-serif;
}
.about-page {
line-height: 1.6;
color: #333;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Header */
.header {
height: 400px;
color: white;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.header::before {
content: ”;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
}
.header-content {
position: relative;
z-index: 1;
}
.header h1 {
font-size: 2.5em;
margin-bottom: 10px;
}
.header p {
font-size: 1.2em;
}
/* Section */
.section {
padding: 40px 0;
}
.section h2 {
font-size: 2em;
margin-bottom: 20px;
text-align: center;
color: #1a73e8;
}
.intro {
display: flex;
align-items: center;
gap: 20px;
}
.intro img {
max-width: 50%;
border-radius: 10px;
}
.values {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
text-align: center;
}
.value-item img {
width: 50px;
margin-bottom: 10px;
}
.conclusion img {
width: 100%;
border-radius: 10px;
margin-top: 20px;
}
/* Responsive */
@media (max-width: 768px) {
.header {
height: 300px;
}
.header h1 {
font-size: 1.8em;
}
.intro {
flex-direction: column;
}
.intro img {
max-width: 100%;
}
}
