* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 20px;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 50px;
}

/* Nagłówek */
.logo-section {
    display: flex;
    align-items: left;
    gap: 25px;

    margin-bottom: 10px;
}

.logo {
    width: 500px; 
    height: 105px;
}

.title-text h1 {
    font-family: 'Roboto Slab', serif;
    font-weight: 300;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: #444;
    text-transform: uppercase;
}

.divider {
    border: none;
    height: 4px;
    background-color: #1a5e1a;
    margin-top: 15px;
    margin-bottom: 40px;
}

/* Sekcje */
.section {
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 300;
    color: #1a5e1a;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Wykształcenie */
.education-list {
    list-style: none;
}

.education-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.education-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Kontakt */
.contact-name {
    font-family: 'Poppins', serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.contact-icon {
    width: 24px;
    height: 24px;
}

.contact-item a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #1a5e1a;
}

/* Responsywność */
@media (max-width: 650px) {
    .container {
        padding: 25px;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: left;

    }

    .section-title {
        font-size: 1.8rem;
    }

    .title-text h2 {
        font-size: 1.6rem;
    }
	
	.logo {
    width: 100%; 
    height: auto;}
	
	
	p {
    text-align: left;
}

}
}