/* Базові стилі та Material Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

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

/* Хедер */
header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #6200ea;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.cta-btn {
    background: #6200ea;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.cta-btn:hover {
    background: #3700b3;
}

/* Герой-секція */
.hero {
    background: linear-gradient(135deg, #6200ea, #bb86fc);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    margin-top: 70px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-btn {
    background: #fff;
    color: #6200ea;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.hero-btn:hover {
    background: #e0e0e0;
}

/* Послуги */
.services {
    padding: 60px 20px;
    background: #fff;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

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

.card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card .material-icons {
    font-size: 48px;
    color: #6200ea;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    color: #666;
}

/* Про нас */
.about {
    padding: 60px 20px;
    background: #f4f4f4;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

/* Контакти */
.contact {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input, form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

form textarea {
    height: 100px;
}

.submit-btn {
    background: #6200ea;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #3700b3;
}

/* Футер */
footer {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer .socials a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

/* Адаптивність */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    nav ul {
        display: none;
    }
}
/* Стилі для сторінки оферти */
.offer {
    padding: 100px 20px 60px;
    background: #fff;
}

.offer h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #6200ea;
    text-align: center;
}

.offer h2 {
    font-size: 24px;
    margin: 20px 0 10px;
}

.offer p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #666;
}

.offer a {
    color: #6200ea;
    text-decoration: none;
}

.offer a:hover {
    text-decoration: underline;
}
/* Чому обирають нас */
.why-choose-us {
    padding: 60px 20px;
    background: #fff;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

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

/* Стилі карток уже є в .card, тому додаткових змін не потрібно */