

/* header{
    height: 65px;
    width: 100%;
    background-color: #010632;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    flex-wrap: wrap;
} */

header {
    min-height: 65px;
    width: 100%;
    background-color: #010632;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

header h1{
    color: white;
    font-size: 20px;
    font-family: 'Arial', sans-serif;
    margin-left: 10px;
    transition: color 0.3s 0.3s, text-shadow 0.3s 0.3s, transform 0.3s ease;
}

header h1:hover{
    color: #ff0000;
    text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff0000, 0 0 20px #010632, 0 0 30px #010632, 0 0 40px #010632, 0 0 50px #010632, 0 0 75px #010632;
    transform: scale(1.08);
}

.headerLeftPart a {
    opacity: 0;
    animation: headerLinkIn 0.3s ease 0.5s forwards;
}

.headerLeftPart a:nth-child(1){ animation-delay: 0.5s; }
.headerLeftPart a:nth-child(2){ animation-delay: 0.6s; }
.headerLeftPart a:nth-child(3){ animation-delay: 0.7s; }
.headerLeftPart a:nth-child(4){ animation-delay: 0.8s; }

@keyframes headerLinkIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* header div{
    width: 50%;
    display: flex;
    gap: 10px;
    width: auto;

} */

.headerLeftPart,
.headerRightPart {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* .headerLeftPart{
    display: flex;
    gap: 10px;
    justify-content: center;
    justify-content: space-evenly;
}

.headerRightPart{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
} */

.headerLeftPart {
    flex: 1;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.headerRightPart {
    flex-shrink: 0;
}

.search-form{
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-input{
    min-width: 200px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
}

.search-input:focus{
    border-color: #ff0000;
    box-shadow: 0 0 0 3px rgba(255,0,0,0.2);
}

.search-button{
    padding: 6px 12px;
    border: none;
    background-color: #ff0000;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.search-button:hover{
    background-color: #cc0000;
}

a{
    text-decoration: none;
    cursor: pointer;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #e8ecff 0%, #ffffff 50%, #eaf3ff 100%);
    color: #1a1a2e;
}

main {
    width: 100%;
    min-height: 850px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0;
}

.model-cards-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.section-1 {
    display: flex;
    width: 100%;
    gap: 0;
    align-items: stretch;
}

.model-card,
.model-card2,
.model-card3 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border-left: 1px solid rgba(255,255,255,0.25);
}

.model-card:first-child,
.model-card2:first-child,
.model-card3:first-child {
    border-left: none;
}

.model-card img,
.model-card2 img,
.model-card3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.model-card:hover img,
.model-card2:hover img,
.model-card3:hover img {
    transform: scale(1.05);
}

.section-2 {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #f7f8fc;
}

.section-3 {
    width: 100%;
    background-color: #f2f6ff;
    padding: 18px 16px 28px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.video-wrapper {
    width: min(100%, 1100px);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.advantages-wrapper {
    width: min(100%, 1100px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #d4d9f2;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(16, 30, 70, 0.08);
}

.advantages-title {
    margin: 0 0 14px;
    font-size: 24px;
    color: #010632;
    text-align: center;
}

.advantages-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.advantages-list li {
    position: relative;
    padding: 12px 12px 12px 36px;
    border: 1px solid #e1e7ff;
    border-radius: 8px;
    background-color: #ffffff;
    color: #1a1a2e;
    font-weight: 600;
    box-shadow: 0 5px 12px rgba(3, 21, 70, 0.06);
}

.advantages-list li::before {
    content: '+';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff4500;
    font-size: 20px;
    font-weight: 800;
}

.advantages-list li:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.section-2-title {
    margin: 0 0 12px;
    color: #010632;
    font-size: 24px;
    text-align: center;
}

.table-wrapper {
    overflow-x: auto;
}



@media (max-width: 900px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 16px;
    }

    .headerRightPart {
        width: 100%;
    }

    .search-form {
        width: 100%;
    }

    .search-input {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .section-1 {
        flex-direction: column;
    }

    .model-card,
    .model-card2,
    .model-card3 {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 250px;
    }

    header h1 {
        font-size: 16px;
    }
}


.models-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 16px;
    background-color: white;
}

.models-table th,
.models-table td {
    border: 1px solid #cfd8ef;
    padding: 10px 12px;
}

.models-table th {
    background-color: #010632;
    color: white;
    font-weight: 600;
}

.models-table tbody tr:nth-child(even) {
    background-color: #eef2ff;
}

.models-table tbody tr:hover {
    background-color: #d8e4ff;
}


