* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #0A1628;
    background-color: #ffffff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.product-section {
    text-align: center;
    margin-bottom: 40px;
}

.product-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    display: block;
}

.product-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #0A1628;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1E5FBF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.product-description {
    font-size: 16px;
    color: #0A1628;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.product-description p {
    margin-bottom: 15px;
}

.product-description strong {
    color: #0A1628;
    font-weight: 700;
}

.product-description ul {
    margin: 10px 0 15px 20px;
}

.product-description ul li {
    margin-bottom: 8px;
}

.order-form {
    background-color: #F4F7FB;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid #1E5FBF;
}

.form-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0A1628;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.form-slot {
    text-align: center;
    padding: 20px;
    color: #1E5FBF;
    font-weight: 500;
}

.footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    border-top: 2px solid #1E5FBF;
    font-size: 14px;
    color: #0A1628;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #1E5FBF;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer .disclaimer {
    margin-top: 15px;
    font-size: 12px;
    color: #888;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    .product-title {
        font-size: 26px;
    }

    .product-subtitle {
        font-size: 16px;
    }

    .product-description {
        font-size: 15px;
    }

    .order-form {
        padding: 25px 15px;
    }

    .form-title {
        font-size: 20px;
    }
}
