/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Open+Sans:wght@400;600;700&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #FF6600;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #FF6600;
    transition: all 0.3s ease;
}

a:hover {
    color: #CC5200;
}

.container {
    width: 100%;
    padding: 60px 20px;
}

section {
    margin-bottom: 40px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, #FF6600, #FF9900);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #FF9900, #FF6600);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 102, 0, 0.4);
    color: white;
}

.btn-secondary {
    background: white;
    color: #FF6600;
    border: 2px solid #FF6600;
}

.btn-secondary:hover {
    background: #FF6600;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Block 1: Offer */
.block-1 {
    min-height: 430px;
    background: linear-gradient(135deg, #FF6600, #FF9900),
                url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    border-radius: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    padding: 60px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.block-1 h1, .block-1 h2 {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.block-1 h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.block-1 p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.block-1 .btn-primary {
    background: white;
    color: #FF6600;
    margin-top: 20px;
    font-size: 1.1rem;
    padding: 15px 40px;
}

.block-1 .btn-primary:hover {
    background: #f8f8f8;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
    color: #FF6600;
}

/* Block 2: Form */
.block-2 {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.block-2 form {
    max-width: 500px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.block-2 input[type="email"] {
    padding: 15px 20px;
    border: 2px solid #e1e1e1;
    border-radius: 30px;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.block-2 input[type="email"]:focus {
    border-color: #FF6600;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
}

.block-2 button {
    width: 100%;
    padding: 15px;
}

/* Block 3: Products & Article */
.block-3 {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    justify-content: center;
}

.product {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product h3 {
    color: #FF6600;
    margin-bottom: 20px;
}

.product .price {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.product ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.product ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.product ul li:before {
    content: "✓";
    color: #FF6600;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.article {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 40px;
    border-left: 5px solid #FF6600;
    margin-top: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.article h2 {
    font-size: 1.8rem;
    color: #333;
    border-bottom: 2px solid #FF6600;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.article p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Block 4: Specialists */
.block-4 {
    background: linear-gradient(to right, #f8f8f8, #ffffff);
    border-radius: 10px;
    padding: 40px;
}

.specialists-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.specialist {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #FF6600;
}

.specialist:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.specialist h3 {
    color: #FF6600;
}

.specialist p:nth-child(2) {
    font-weight: 500;
    color: #666;
    margin-bottom: 15px;
}

/* Block 5: Reviews */
.block-5 {
    background-color: #333;
    color: white;
    border-radius: 10px;
    padding: 40px;
}

.block-5 h2 {
    color: white;
    text-align: center;
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.review {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.review:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.review h3 {
    color: #FF9900;
}

.rating {
    color: #FF9900;
    font-size: 1.5rem;
    margin-top: 15px;
}

/* Block 6: Contact & Map */
.block-6 {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
}

.map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Block 7: Footer */
.block-7 {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px;
    border-radius: 0 0 10px 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .container {
        padding: 40px 15px;
    }

    .block-1 {
        min-height: auto;
        padding: 60px 20px;
    }

    .products-container,
    .specialists-container,
    .reviews-container {
        flex-direction: column;
    }

    .product,
    .specialist,
    .review {
        min-width: 100%;
    }

    .article {
        padding: 25px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .block-2 form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .block-1,
    .block-2,
    .block-3,
    .block-4,
    .block-5,
    .block-6 {
        border-radius: 5px;
        padding: 30px 15px;
    }

    .article {
        padding: 20px;
    }

    .product,
    .specialist,
    .review {
        padding: 20px;
    }
}
