/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Główny nagłówek strony */
.stil_page-header {
    background-color: #f5f5f5;
    border-radius: 0;
    padding: 45px 20px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stil_page-header .stil_logo-container {
    margin-bottom: 15px;
}

.stil_page-header .stil_logo {
    height: 30px;
    margin-bottom: 30px;
}

.stil_page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
}

.stil_page-header p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-weight: 300;
    font-size: 16px;
    padding: 25px 0;
}

/* Sekcja Nasza Misja */
.stil_mission-section {
    display: flex;
    align-items: center;
    margin: 80px 0;
    gap: 60px;
}

.stil_mission-image {
    flex: 1;
    background-color: #f5f5f5;
    height: 400px;
    border-radius: 4px;
    /* Miejsce na grafikę */
}

.stil_mission-content {
    flex: 1;
}

.stil_mission-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #000;
}

.stil_mission-content p {
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
}

/* Sekcja Designerskie Meble */
.stil_design-section {
    display: flex;
    margin: 80px 0;
    gap: 60px;
}

.stil_design-content {
    flex: 1;
}

.stil_design-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #000;
}

.stil_design-content p {
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
}

.stil_design-icon {
    margin-top: 30px;
    width: 60px;
    height: 60px;
    /* Miejsce na ikonę */
}

.stil_design-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

.stil_design-image {
    background-color: #f5f5f5;
    height: 180px;
    border-radius: 4px;
    /* Miejsce na grafikę */
}

/* Sekcja Dlaczego Stilano */
.stil_why-section {
    margin: 80px 0;
    text-align: center;
}

.stil_why-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #000;
}

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

.stil_feature-card {
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-radius: 4px;
    text-align: left;
    transition: transform 0.3s;
}

.stil_feature-card:hover {
    transform: translateY(-5px);
}

.stil_feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000;
}

.stil_feature-card p {
    font-size: 14px;
    color: #666;
    font-weight: 300;
    line-height: 1.7;
}

/* Sekcja Produkty */
/* Sekcja Produkty - zmodyfikowana */
.stil_products-section {
    margin: 80px 0;
    background-color: #f9f9f9;
    padding: 60px;
    border-radius: 4px;
    display: flex;
    gap: 60px;
}

.stil_products-image {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f5f5f5;
    height: auto; /* Zmienione z ustalonej wartości na auto */
    min-height: 100%; /* Zapewnia minimum wysokości */
    object-fit: cover; /* Zapewnia dobre dopasowanie zdjęcia */
    /* Miejsce na grafikę */
}

.stil_products-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stil_products-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #000;
}

.stil_products-content p {
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
}

.stil_benefits-list {
    margin-top: 40px;
}

.stil_benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.stil_benefit-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    margin-top: 3px;
    /* Miejsce na ikonę */
}

.stil_benefit-text {
    flex: 1;
}

.stil_benefit-text h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
}

.stil_benefit-text p {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 300;
}

/* Responsive dla tej sekcji */
@media (max-width: 768px) {
    .stil_products-section {
        flex-direction: column;
    }
    
    .stil_products-image {
        height: 300px; /* Ustalona wysokość na mniejszych ekranach */
        width: 100%;
    }
}

@media (max-width: 576px) {
    .stil_products-section {
        padding: 40px 20px;
    }
    
    .stil_products-image {
        height: 250px; /* Mniejsza wysokość na najmniejszych ekranach */
    }
}

/* Przycisk */
.stil_btn {
    display: inline-block;
    background-color: #000;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: background-color 0.3s;
}

.stil_products-content .stil_btn {
    width: fit-content;
    align-self: flex-start; /* Jeśli przycisk ma być wyrównany do lewej strony */
}

.stil_btn:hover {
    background-color: #454545;
    color: #fff;
}

/* Sekcja Newsletter */
.stil_newsletter {
    background-color: #f5f5f5;
    padding: 40px;
    text-align: center;
    margin: 80px 0;
}

.stil_newsletter h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000;
}

.stil_newsletter p {
    margin-bottom: 25px;
    font-weight: 300;
}

.stil_newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.stil_newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.stil_newsletter-btn {
    background-color: #000;
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 4px 4px 0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.stil_newsletter-btn:hover {
    background-color: #333;
}

/* Sekcja Zapraszamy */
.stil_invitation-section {
    margin: 80px 0;
    background-color: #f5f5f5;
    padding: 60px;
    border-radius: 4px;
    text-align: center;
}

.stil_invitation-logo {
    margin: 0 auto 30px;
    width: 120px;
    /* Miejsce na logo */
}

.stil_invitation-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #000;
}

.stil_invitation-content p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
}

.stil_social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.stil_social-link {
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.stil_social-link:hover {
	color: #fff;
	background-color: #454545;
}

/* Responsive */
@media (max-width: 992px) {
    .stil_features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stil_mission-section,
    .stil_design-section,
    .stil_products-section {
        flex-direction: column;
    }

    .stil_features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stil_design-images {
        grid-template-columns: 1fr 1fr;
    }

    .stil_page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .stil_features-grid {
        grid-template-columns: 1fr;
    }

    .stil_newsletter-form {
        flex-direction: column;
    }

    .stil_newsletter-input {
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .stil_newsletter-btn {
        border-radius: 4px;
        padding: 12px 0;
    }

    .stil_design-images {
        grid-template-columns: 1fr;
    }

    .stil_invitation-section {
        padding: 40px 20px;
    }

    .stil_products-section {
        padding: 40px 20px;
    }
}
