body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
}
img{
    width: 100%;
    height: 100%;
}
p{
    font-size: 30px;
}
h3{
    font-size: 40px;
    font-weight: 800;
}
h2{
    font-size: 45px;
    font-weight: 800;
}
h4{
    font-size: 35px;
}
label{
    font-size: 30px;
}
a{
    color: #4682B4;
}
.header {
    background: linear-gradient(45deg, #2b2b2b, #404040);
    color: #e0e0e0;
    padding: 20px;
    text-align: center;
    animation: headerGlow 3s infinite;
    border-bottom: 2px solid #505050;
}

@keyframes headerGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.product-info h2{
    text-align: center;
}
.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: start;
}

.product-image {
    flex: 1;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 10px;
    transition: transform 0.3s;
    background: #2b2b2b;
    padding: 20px;
}

.product-image:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 25px rgba(80,80,80,0.4);
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.price-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.old-price {
    text-decoration: line-through;
    color: #808080;
    font-size: 50px;
}

.new-price {
    color: #c0c0c0;
    font-size: 50px;
    font-weight: bold;
    margin-left: 15px;
}

.discount-badge {
    background: #4682B4;
    color: #e0e0e0;
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 10px;
    border: 1px solid #505050;
    font-size: 40px;
}

.description-block {
    background: #2b2b2b;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    border: 1px solid #404040;
}

footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
    border-top: 2px solid #404040;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature {
    padding: 15px;
    background: #2b2b2b;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid #404040;
}

.contact-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: #2b2b2b;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid #404040;
}
.act{
    font-size: 30px;
    padding: 0 25px;
    text-align: center;
}
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 2px solid #404040;
    border-radius: 8px;
    font-size: 30px;
    transition: border-color 0.3s;
    color: #e0e0e0;
}

.form-group input:focus {
    border-color: #505050;
    outline: none;
}

.submit-button {
    background: #4682B4;
    color: #e0e0e0;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 40px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    line-height: 85px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(80,80,80,0.3);
    background: linear-gradient(45deg, #505050, #606060);
}

.order-button {
    background: #4682B4;
    color: #e0e0e0;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    vertical-align: middle;
    width: 100%;
    line-height: 85px;
}

.order-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(80,80,80,0.3);
    background: linear-gradient(45deg, #505050, #606060);
}