/* Global styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background-color: #008CBA;
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    width: 100%;
    max-width: 250px;
    margin: 10px 0;
}

button:hover {
    background-color: #005f6b;
}

/* Header styles */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #1a1919;
    color: rgb(255, 255, 255);
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    text-align: center;
}

.logo img {
    width: 200px;
    height: auto;
}

/* Guarantee text styling */
.guarantee-text {
    font-size: 30px;
    font-weight: bold;
    color: #FFD700;
    animation: fadeWipe 8s ease infinite;
    overflow: hidden;
    white-space: nowrap;
    flex: 2;
    text-align: center;
}

/* Fade wipe effect */
@keyframes fadeWipe {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Navigation menu styles */
.menu-header {
    background-color: #fff;
    border: 2px solid #000;
    padding: 10px;
    text-align: center;
    margin: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-item {
    display: inline-block;
    margin: 15px;
    padding: 10px;
    text-align: center;
    background-color: #f0a21d;
    border-radius: 8px;
    border: 2px solid #3d0d0d;
    width: 150px;
    transition: background-color 0.3s ease;
}

.menu-item:hover {
    background-color: #ffffff;
}

.menu-item i {
    font-size: 24px;
    margin-bottom: 10px;
}

.menu-item a {
    display: block;
    font-size: 16px;
    color: #000;
}

/* Main content styles */
.main-content {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: space-between;
    gap: 20px;
}

.left-column {
    flex: 1;
    max-width: 50%;
    margin-right: 20px;
}

.right-column {
    flex: 1;
    max-width: 50%;
}

.left-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.right-column h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.rating {
    margin-top: 10px;
    font-size: 18px;
    color: #f4b400;
}

.brand {
    font-size: 18px;
    display: block;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Description Group Styles */
.description-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.description-box {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #ddd;
    text-align: left;
}

/* Buttons styling */
.buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

/* License Section Styles */
.license-section {
    background-color: #e8e8e8;
    color: rgb(6, 6, 6);
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    border-radius: 8px;
    font-size: 16px;
}

.license-section p {
    margin: 0;
    font-weight: 700;
}

.license-section i {
    font-size: 20px;
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .logo img {
        width: 150px;
    }

    .guarantee-text {
        font-size: 16px;
        text-align: center;
        animation: fadeWipe 4s ease infinite;
    }

    .menu-header {
        padding: 10px 0;
        margin: 10px;
    }

    .menu-item {
        width: 100%;
        margin: 10px 0;
    }

    .main-content {
        flex-direction: column;
    }

    .left-column,
    .right-column {
        max-width: 100%;
        margin-right: 0;
    }

    .right-column h1 {
        font-size: 20px;
    }

    .buttons {
        flex-direction: column;
        gap: 15px;
    }

    .license-section {
        font-size: 14px;
    }
}
