* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f7fb;
    color: #1f2937;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #0f172a;
    padding: 20px 0;
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.top-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 5px;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    color: white;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.social-icons {
    position: absolute;
    right: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icons img {
    width: 32px;
    height: 32px;
}

.social-icons img:hover {
    transform: scale(1.15);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #38bdf8;
}


.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)),
                url("images.jpg/indexpage.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero h1,
.hero p {
    color: white;
}

.btn {
    display: inline-block;
    background-color: #38bdf8;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background-color: #0ea5e9;
}

.about,
.services,
.contact {
    padding: 80px 20px;
}

.about h2,
.services h2,
.contact h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 25px;
    color: #0f172a;
}

.about p,
.contact p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 18px;
}

footer {
    background-color: #0f172a;
    color: white;
    text-align: center;
    padding: 25px 0;
}

/* SERVICE LIST */

.service-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.service-row {
    align-items: center;
}
.service-row {
    gap: 50px;
}
.service-row.reverse {
    flex-direction: row-reverse;
}

.service-row img {
    width: 540px;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
}

.service-text {
    max-width: 600px;
}

.service-text h3 {
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 22px;
}

.service-text p {
    font-size: 16px;
}

/* KONTAKT STRANICA */

.contact-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)),
                url("images.jpg/arbeit.jpg");
    background-size: cover;
    background-position: center;
}

.contact-wrapper {
    width: 100%;
    max-width: 420px;
    background: white;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-wrapper h1 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-wrapper p {
    text-align: center;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 16px;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    background: #38bdf8;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background: #0ea5e9;
}
.hero-subtitle {
    color: #38bdf8;
    font-weight: bold;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #0f172a;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.stats {
    padding: 60px 20px;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.stat-box h3 {
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 8px;
}

.why-us {
    padding: 80px 20px;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.why-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.why-box h3 {
    margin-bottom: 12px;
    color: #0f172a;
}

.process {
    padding: 80px 20px;
    background: #f8fafc;
}

.process h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
    color: #0f172a;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.process-box span {
    display: inline-block;
    font-size: 28px;
    font-weight: bold;
    color: #38bdf8;
    margin-bottom: 10px;
}

.process-box h3 {
    margin-bottom: 10px;
    color: #0f172a;
}

.cta-section {
    padding: 80px 20px;
    background: #0f172a;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
    font-size: 18px;
}
.service-btn {
    margin-top: 18px;
    display: inline-block;
}

.service-text p {
    margin-bottom: 0;
    line-height: 1.8;
}
@media (max-width: 768px) {
    .hero {
        padding: 100px 20px;
    }
.hero-buttons {
    flex-direction: column;
    align-items: center;
}

.stats-grid,
.why-grid,
.process-grid {
    grid-template-columns: 1fr;
}
    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 18px;
    }

    nav ul {
        flex-direction: column;
        gap: 12px;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-img {
        width: 24px;
        height: 24px;
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .service-row img {
        width: 100px;
        height: auto;
    }
}
