Описание
body {
font-family: ‘Helvetica Neue’, Arial, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to bottom, #f5f5f5, #ffffff);
color: #333;
line-height: 1.6;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 30px;
}
.header {
background-color: #1a3c34;
color: #fff;
text-align: center;
padding: 40px 20px;
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.header h1 {
font-size: 2.8em;
margin: 0;
letter-spacing: 1px;
}
.header p {
font-size: 1.3em;
margin: 10px 0;
}
.price {
font-size: 2em;
color: #f1c40f;
font-weight: 700;
text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.section {
background-color: #fff;
padding: 25px;
border-radius: 12px;
margin-bottom: 25px;
box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.section h2 {
font-size: 2em;
color: #1a3c34;
margin-bottom: 15px;
border-bottom: 2px solid #3498db;
display: inline-block;
padding-bottom: 5px;
}
.section p {
font-size: 1.15em;
color: #444;
}
.features-list {
list-style: none;
padding: 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 15px;
}
.features-list li {
font-size: 1.1em;
color: #2c3e50;
padding: 15px;
background-color: #f8f9fa;
border-radius: 8px;
position: relative;
transition: transform 0.2s;
}
.features-list li:hover {
transform: translateY(-5px);
}
.features-list li:before {
content: ‘✓’;
color: #e67e22;
font-weight: bold;
margin-right: 10px;
}
.size-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background-color: #fff;
border-radius: 10px;
overflow: hidden;
}
.size-table th, .size-table td {
border: 1px solid #e0e0e0;
padding: 15px;
text-align: center;
font-size: 1.05em;
}
.size-table th {
background-color: #3498db;
color: #fff;
font-size: 1.25em;
}
.size-table td {
color: #333;
}
.size-table tr:hover {
background-color: #f0faff;
}
.order-section {
text-align: center;
background: #ecf0f1;
color: #333;
padding: 30px;
border-radius: 12px;
margin-top: 30px;
}
.order-section h2 {
font-size: 2em;
margin-bottom: 20px;
}
.order-section p {
font-size: 1.2em;
margin: 8px 0;
}
.order-section a {
color: #f1c40f;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}
.order-section a:hover {
color: #e67e22;
}
@media (max-width: 768px) {
.header h1 {
font-size: 2em;
}
.header p {
font-size: 1.1em;
}
.price {
font-size: 1.6em;
}
.section h2 {
font-size: 1.6em;
}
.section p, .features-list li {
font-size: 1em;
}
.size-table th, .size-table td {
font-size: 0.95em;
padding: 10px;
}
.order-section h2 {
font-size: 1.6em;
}
.order-section p {
font-size: 1em;
}
}
@media (max-width: 480px) {
.container {
padding: 15px;
}
.header {
padding: 20px;
}
.header h1 {
font-size: 1.8em;
}
.price {
font-size: 1.4em;
}
.section h2 {
font-size: 1.4em;
}
.features-list {
grid-template-columns: 1fr;
}
.size-table th, .size-table td {
Отзывы
Отзывов пока нет.