body {
    background-color: #1c1c1c;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

.header {
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    font-size: 2em;
    color: #ff784e;
    margin: 0;
}



.btn-home {
    background-color: transparent;
    color: #ff784e;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #ff784e;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-home:hover {
    background-color: #ff784e;
    color: white;
}


h1 {
    text-align: center;
    color: #ff6a00;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 2rem;
    letter-spacing: 2px;
}

.services {
    text-align: center;
    padding: 40px 20px;
}

.services h1 {
    color: #ff6a00;
    margin-bottom: 20px;
    font-size: 2rem;
    text-transform: uppercase;
}

.services-list {

    list-style: none;
padding: 0;   
 margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-item {
    background: linear-gradient(135deg, #3a3a3a, #222222);
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
        align-items: center;
        justify-content: center;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.5);
}

.service-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-item p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.5;
    font-weight: bold;
    
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    background-color: #ff6a00;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #e65c00;
}


.footer {
    background-color: #141414;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    padding: 60px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-about h4,
.footer-links h4,
.footer-contact h4 {
    color: #ff784e;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.footer-about p {
    font-size: 0.95em;
    color: #c0c0c0;
    line-height: 1.5;
    margin-top: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ff784e;
}

.footer-contact p {
    color: #c0c0c0;
    font-size: 0.95em;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    color: #888888;
    padding-top: 20px;
    font-size: 0.85em;
}

/* Адаптивність */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-about, .footer-links, .footer-contact {
        min-width: 100%;
    }
}



@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-about, .footer-links, .footer-contact {
        width: 80%;
        text-align: center;
    }
}