* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.container {
    max-width: var(--m-width);
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}



h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.3em;
    opacity: 0.9;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.content {
    padding: 60px 0px;
}

.section {
    margin-bottom: 50px;
}

h2 {
    color: #2a68b2;
    font-size: 2.2em;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2a68b2;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: #1a5899;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    color: #2a68b2;
    font-size: 1.4em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature-card h3::before {
    content: '●';
    color: #2a68b2;
    font-size: 1.5em;
    margin-right: 10px;
}

.feature-card p {
    color: #555;
    line-height: 1.8;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.highlight-item {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(42, 104, 178, 0.2);
    border-color: #2a68b2;
}

.highlight-icon {
    width: 160px;
    height: 160px;
    margin: 0 auto 25px;
    transition: transform 0.4s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.highlight-item h3 {
    color: #2a68b2;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.highlight-item p {
    color: #666;
    font-size: 1em;
    line-height: 1.7;
    margin: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, #2a68b2 0%, #1a5899 100%);
    color: white;
}

th,
td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

th {
    font-weight: 600;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

tbody tr:hover {
    background-color: #f5f7fa;
}

tbody tr:last-child td {
    border-bottom: none;
}

.highlight-box {
    background: linear-gradient(135deg, #2a68b2 0%, #1a5899 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(42, 104, 178, 0.3);
}

.highlight-box h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.highlight-box p {
    font-size: 1.1em;
    line-height: 1.8;
    opacity: 0.95;
}

.dimensions {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.dimensions h3 {
    color: #2a68b2;
    margin-bottom: 20px;
    font-size: 1.6em;
}

.dimension-specs {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.dimension-item {
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    width: 280px;
}

.dimension-item strong {
    display: block;
    color: #2a68b2;
    font-size: 1.2em;
    margin-bottom: 10px;
}
.dimension-item span{
    color: #000;
}
.accessories {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 15px;
}

.accessories h3 {
    color: #2a68b2;
    margin-bottom: 20px;
    font-size: 1.6em;
}

.accessories ul {
    list-style: none;
}

.accessories li {
    padding: 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.05em;
}

footer {
    background: #2a68b2;
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 0.95em;
}

.note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin-top: 30px;
    border-radius: 5px;
    font-style: italic;
    color: #856404;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    h2 {
        font-size: 1.6em;
    }

    .content {
        padding: 30px 20px;
    }


    .features-grid {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .highlight-icon {
        width: 140px;
        height: 140px;
    }

    table {
        font-size: 0.9em;
    }

    th,
    td {
        padding: 12px;
        word-break: break-all;
        word-wrap: break-word;
    }
    table tr>td:nth-of-type(1){
        width: 100px;
    }
    .highlight-box{
        padding: 14px;
    }
    .accessories{
        padding: 14px;
    }
    .accessories>table tr>td:nth-of-type(1){
        width: auto;
    }
    .accessories>table tr>th:nth-of-type(3),
    .accessories>table tr>td:nth-of-type(3){
        display: none;
    }
}