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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #000;
    color: #fff;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    display: flex;
    flex-flow: row wrap;
    min-height: 60vh;
}

.hero-image {
    flex: 0 0 50%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 3vw;
}

.hero-content {
    flex: 0 0 50%;
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.logo img {
    width: 100%;
    height: auto;
}

.logo-icon {
    width: 60px;
    height: 60px;
}

.logo-text {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.tagline {
    font-size: 2.3rem;
    line-height: 0.9;
    font-weight: 500;
    transform: scaleX(1.2) translateX(10%);
}

.tagline p {
    margin: 5px 0;
}

/* Services Section */
.services {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 30px;
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 280px;
    max-width: 350px;
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

a.service-card h2 {
    text-decoration: underline #b8b8b8;
}

.services.hamowania-drogowa a {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1.5em;
    text-decoration: none;
    color: #fff;
}
.services.hamowania-drogowa .tagline {
    transform: scaleX(1.2);
}
.services.hamowania-drogowa img {
    width: 20em;
}

.service-card:hover {
    background-color: rgba(230, 57, 70, 0.1);
    border-color: #e63946;
    transform: translateY(-5px);
}

.service-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.service-card p {
    font-size: 1rem;
    color: #ccc;
    font-weight: 300;
}

/* Footer Section */
.footer {
    background-color: #000;
    border-top: 1px solid #333;
    padding: 40px 30px;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 300px;
}

.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 400;
    color: #fff;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ccc;
    font-weight: 300;
}

.footer-column strong {
    color: #fff;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1000px) {
    .hero {
        flex-direction: column;
    }

    .hero-image {
        flex: 0 0 100%;
        width: 100%;
        overflow: hidden;
        margin-top: 3vw;
    }
    .hero-image img {
        margin-top: -35%;
        margin-bottom: -20%;
    }

    .hero-content {
        flex: 0 0 100%;
        width: 100%;
        padding-left: 10%;
        padding-right: 10%;
    }
}

@media (max-width: 768px) {
    .tagline {
        font-size: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-column {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 1.5rem;
    }

    .service-card h2 {
        font-size: 1.5rem;
    }

    .services {
        padding: 40px 20px;
    }
}

.services.hamowania-drogowa {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 140px;
    flex-wrap: wrap;
}

.services.hamowania-drogowa .brand-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    gap: 15px;
}

.services.hamowania-drogowa .brand-link .tagline {
    margin: 0;
    transform: scaleX(1.2);
}
}

	}
