* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
}

/* ===== KOLORY ===== */
:root {
    --navy: #1f2a44;
    --pink: #ef4d8b;
    --light-pink: #fff4f8;
    --white: #ffffff;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid #eee;
}

.header-content {
    width: 100%;
    padding: 0 86px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}



.logo {
    height: 256px;
    display: block;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
}


.btn-primary {
    background: var(--pink);
    color: white;
    padding: 10px 18px;
    border-radius: 24px;
}

.btn-outline {
    border: 2px solid var(--pink);
    color: var(--pink);
    padding: 8px 16px;
    border-radius: 24px;
}

/* ===== HERO ===== */
.hero {
    background: var(--light-pink);
    padding: 160px 0 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    max-width: 520px;
}

.hero-text h1 {
    font-size: 44px;
    line-height: 1.2;
}

.hero-text h1:first-child {
    white-space: nowrap;
}


.hero-text span {
    color: var(--pink);
}

.hero-text p {
    margin: 24px 0;
}

.hero-buttons a {
    margin-right: 15px;
}

.hero-image img {
    width: 560px;
    border-radius: 24px;
    margin-left: 150px;
}

/* ===== O MNIE ===== */
.about {
    background: var(--navy);
    color: white;
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.about-text p {
    max-width: 500px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-image img {
    width: 460px;
    border-radius: 24px;
    margin-top: 40px;
    margin-right: 80px;
}


/* SERVICES */
.services {
    padding: 80px;
    background: #fff5f8;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
}

.service-card h3 {
    font-size: 22px;
}

/* UE */
.eu {
    padding: 70px;
    text-align: center;
}

.eu img {
    width: 100%;
    max-width: 600px;
    margin-bottom: 25px;
}

/* FOOTER */
footer {
    background: #1e2a44;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

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