/*
    Theme Name:     Smart Theme v3 Child
    Theme URI:      https://mariuszjurczenko.pl 
    Description:    Niesamowity motyw potomny dla Smart Theme v3
    Author:         Mariusz Jurczenko
    Author URI:     https://mariuszjurczenko.pl
    Template:       op-smart-theme3
    Version:        1.0.1 
    License:        GNU General Public License v2 or later
    License URI:    http://www.gnu.org/licenses/gpl-2.0.html
    Tags:           light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
    Text Domain:    smart-theme-v3-child
*/

/* Tutaj możesz dodać swoje własne reguły CSS, które nadpiszą lub uzupełnią style motywu nadrzędnego */
/* CSS z Twojego pliku Code.html zostanie dodany później */

/* --- Reset & Base Styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Paleta kolorów */
    --primary-color: #1976D2;
    --primary-dark-color: #0D47A1;
    --accent-color: #FFC107;
    --light-gray-color: #f5f5f5;
    --medium-gray-color: #e0e0e0;
    --dark-gray-color: #424242;
    --text-color: #212121;
    --text-light-color: #757575;
    --white-color: #ffffff;

    /* Cienie */
    --shadow-1: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-2: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    --shadow-3: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    --shadow-4: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);

    /* Typografia */
    --font-family: 'Roboto', sans-serif;

    /* Dodane kolory dla nowych sekcji */
    --dark-blue-bg: #2a304a;
    --accent-color-2: #d83a7a;
    --image-outline-color: rgba(101, 115, 195, 0.6);
    --tag-color-recommended: #d83a7a;
    --tag-color-new: #0097a7;
    --star-color: #FFCA28;
    --course-button-color: #0097a7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white-color);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--primary-dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; text-align: center; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; }
/* h4, h5, h6 - nieużywane */

p {
    margin-bottom: 1rem;
    color: var(--text-light-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Class */
.text-center {
    text-align: center;
}

/* --- Layout & Grid --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 3rem 0;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.course-grid, .blog-grid, .testimonial-grid, .value-grid, .benefits-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .course-grid, .blog-grid, .testimonial-grid, .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
     .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .course-grid, .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .blog-grid, .testimonial-grid {
         grid-template-columns: repeat(2, 1fr);
    }
      .value-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Components --- */

/* AppBar */
.app-bar {
    background-color: var(--white-color);
    box-shadow: var(--shadow-2);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.app-bar nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark-color);
}

.desktop-nav {
    list-style: none;
    display: flex;
}

.desktop-nav li {
    margin-left: 1.5rem;
}

.desktop-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after { /* Klasa .active nie jest używana w HTML */
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray-color);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: var(--shadow-1);
}

.mobile-nav ul {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav li a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    font-weight: 500;
}
.mobile-nav li a:hover {
    background-color: var(--light-gray-color);
}

.mobile-nav.active { /* Styl dla aktywnego menu mobilnego, używane w JS */
    display: block;
}

/* Przyciski */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.1s ease;
    box-shadow: var(--shadow-1);
    margin: 0.5rem;
}
.btn:hover {
     box-shadow: var(--shadow-2);
     transform: translateY(-1px);
}
.btn:active {
    box-shadow: none;
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.btn-primary:hover {
    background-color: var(--primary-dark-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.btn-secondary:hover {
    background-color: rgba(25, 118, 210, 0.08);
}

.btn-text {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: none;
    padding: 0.5rem;
    text-transform: none;
    letter-spacing: normal;
}
.btn-text:hover {
    background-color: rgba(25, 118, 210, 0.08);
    transform: none;
     box-shadow: none;
}

.btn-accent { /* Używany w #promo-ebook */
    background-color: var(--accent-color-2);
    color: var(--white-color);
    border-radius: 25px;
    padding: 0.9rem 2rem;
}
.btn-accent:hover {
    background-color: #c72a6a;
    color: var(--white-color);
    box-shadow: var(--shadow-2);
    transform: translateY(-1px);
}

.btn-course { /* Używany w kartach kursów i sekcji ebook/feature */
    background-color: var(--course-button-color);
    color: var(--white-color);
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}
.btn-course:hover {
    background-color: #00838f;
    color: var(--white-color);
    box-shadow: var(--shadow-2);
    transform: translateY(-1px);
}

/* Karty */
.card {
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: var(--shadow-2);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin-bottom: 1.5rem;
}
.card:hover {
    box-shadow: var(--shadow-4);
    transform: translateY(-4px);
}

.card img { /* Używane w starych kartach kursów (#courses - first instance) */
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 { /* Ogólny styl dla h3 w karcie */
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Chips / Tagi */
.chips {
    margin-bottom: 1rem;
}
.chip {
    display: inline-block;
    background-color: var(--medium-gray-color);
    color: var(--text-light-color);
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* --- Section Styles (in order of appearance) --- */

/* Hero Section (#hero) */
.hero-section {
    background-color: var(--primary-dark-color);
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    padding: 5rem 0;
    text-align: center;
}
.hero-content h1 {
    color: var(--white-color);
    margin-bottom: 1rem;
}
.hero-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-section .btn-primary {
    background-color: var(--accent-color);
    color: var(--text-color);
}
.hero-section .btn-primary:hover {
     background-color: #ffca28;
     color: var(--text-color);
}
.hero-section .btn-secondary {
    color: var(--white-color);
    border-color: var(--white-color);
}
.hero-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Promo Ebook Section (#promo-ebook) & Feature Course Dark Section (#feature-course-dark) */
.promo-section { /* Wspólne style dla obu sekcji */
    background-color: var(--dark-blue-bg);
    color: var(--white-color);
    padding: 4rem 0;
    overflow: hidden;
}

.promo-content, .feature-content { /* Wspólny layout */
    display: flex;
    align-items: center;
    gap: 3rem;
}

.promo-text, .feature-text { /* Wspólny tekst */
    flex: 1;
}

.promo-label { /* Używane w #promo-ebook */
    display: block;
    color: var(--accent-color-2);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.promo-section h2 { /* Wspólny nagłówek H2 */
    color: var(--white-color);
    font-size: 2.8rem;
    text-align: left;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.promo-section p { /* Wspólny paragraf */
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Style specyficzne dla #promo-ebook */
.promo-image {
    flex-basis: 40%;
    max-width: 400px;
    position: relative;
    text-align: center;
    filter: drop-shadow(0 0 20px var(--image-outline-color));
}
.promo-image img {
    display: block;
    max-width: 100%;
    height: auto;
    clip-path: ellipse(40% 50% at 50% 50%);
}

/* Style specyficzne dla #feature-course-dark */
.feature-image {
    flex-basis: 45%;
    flex-shrink: 0;
}
.feature-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.feature-text h2 { /* Nadpisanie/Dostosowanie H2 dla tej sekcji */
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.feature-text .subheading {
    color: var(--white-color);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: left;
    line-height: 1.4;
}
.feature-checklist { /* Checklist w ciemnej sekcji */
    list-style: none;
    padding-left: 0;
    margin-bottom: 2.5rem;
}
#feature-course-dark .feature-checklist li {
    position: relative;
    padding-left: 2.2em;
    margin-bottom: 0.6rem; /* Mniejszy odstęp */
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9); /* Jaśniejszy tekst */
}
.feature-checklist li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--course-button-color);
    font-size: 1.2em;
}
.feature-button.btn-course { /* Przycisk w ciemnej sekcji */
    display: inline-block;
    width: auto;
    padding: 0.8rem 1.8rem;
    border: 2px solid var(--course-button-color);
}
.feature-button.btn-course:hover {
    background-color: #00838f;
    border-color: #00838f;
    color: var(--white-color);
}

/* Benefits Section (#benefits) */
.highlight-section { /* Używane przez #benefits */
    background-color: var(--light-gray-color);
}
.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
}
.benefit-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}
.benefit-card p {
    color: var(--text-light-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* "Na Start" Courses Section (#courses - first instance) */
/* Używa ogólnych stylów .container, .section, .grid, .course-grid, .card, .card img, .card-content, .chips, .btn-primary */
/* Nie wymaga specyficznych stylów poza tymi komponentami */

/* Bestselling Courses Section (#courses - second instance / .courses-section) */
.courses-section { /* Klasa dla tej sekcji, może dzielić style z innymi sekcjami z nagłówkami */
    /* Dziedziczy padding z .section */
}
.section-header {
    margin-bottom: 3rem;
}
.section-label { /* Używane w nagłówku tej sekcji */
    display: block;
    color: var(--accent-color-2);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.courses-section h2 { /* Nagłówek specyficznie w tej sekcji */
    text-align: center;
    margin-bottom: 1rem;
}
.section-subtitle {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light-color);
    line-height: 1.7;
}
/* Style dla kart w tej sekcji */
.course-card { /* Ogólne style karty zdefiniowane w Komponentach */
    overflow: hidden;
    text-align: left;
}
.card-image-container { /* Kontener obrazka w nowej karcie */
    position: relative;
}
.card-image-container img { /* Obrazek w nowej karcie */
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.course-tag { /* Etykieta Polecany/Nowość */
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.3rem 0.7rem;
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--white-color);
    border-radius: 4px;
    text-transform: uppercase;
    line-height: 1;
}
.tag-recommended { background-color: var(--tag-color-recommended); }
.tag-new { background-color: var(--tag-color-new); }
.course-category { /* Kategoria nad tytułem */
    text-transform: uppercase;
    color: var(--text-light-color);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}
.course-card h3 { /* Tytuł kursu w nowej karcie */
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-color);
}
.course-meta { /* Metadane: lekcje, poziom */
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    color: var(--text-light-color);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.course-meta span { display: flex; align-items: center; gap: 0.4rem; }
.course-meta i { font-size: 0.9em; }
.course-rating { /* Gwiazdki */
    margin-bottom: 1.5rem;
    line-height: 1;
}
.course-rating i { color: var(--star-color); margin-right: 2px; font-size: 1rem; }
.course-rating i.far { color: var(--medium-gray-color); }
.rating-value { font-size: 0.9rem; color: var(--text-light-color); margin-left: 0.5rem; vertical-align: middle; }
.section-footer { /* Przycisk "Zobacz wszystkie kursy" na dole */
    margin-top: 3rem;
}

/* Ebook Challenge Section (#ebook-challenge) */
.challenge-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 3rem;
}
.challenge-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}
.challenge-text p {
    margin-bottom: 1.5rem;
}
.checklist { /* Używana w sekcji ebook i feature */
    list-style: none;
    padding-left: 0;
    margin-bottom: 2.5rem;
}
.checklist li { /* Używana w sekcji ebook i feature */
    position: relative;
    padding-left: 2.2em;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    color: var(--text-color); /* Domyślny kolor tekstu (nadpisany w .feature-checklist) */
}
.checklist li i { /* Używana w sekcji ebook i feature */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--course-button-color);
    font-size: 1.2em;
}
.challenge-image {
    text-align: center;
}
.ebook-cover {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-4);
    display: inline-block;
}
.challenge-text .btn-course {
    margin-top: 1rem;
}

/* Value Proposition Section (#value-prop) */
.value-item {
    text-align: center;
}
.value-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.value-item h3 {
    font-size: 1.2rem;
    color: var(--text-color);
}

/* About Section (#about) */
.about-section .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.about-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-3);
}
.about-text {
    text-align: center;
}

@media (min-width: 768px) { /* Poprawka layoutu dla #about */
    .about-section .about-content {
        flex-direction: row;
        text-align: left;
    }
    .about-photo {
        width: 250px;
        height: 250px;
        flex-shrink: 0;
    }
}

/* Testimonials Section (#testimonials) */
.testimonial-card { /* Karta opinii */
    padding: 1.5rem;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
}
.testimonial-card footer {
    font-weight: 500;
    color: var(--text-light-color);
    text-align: right;
}

/* Newsletter Section (#newsletter) */
.newsletter-section {
    background-color: var(--light-gray-color);
    text-align: center;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 1.5rem auto 1rem auto;
    gap: 1rem;
}
.newsletter-form input[type="email"] {
    padding: 0.75rem 1rem;
    border: 1px solid var(--medium-gray-color);
    border-radius: 4px;
    font-size: 1rem;
}
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
}
.newsletter-section small {
    color: var(--text-light-color);
    font-size: 0.8rem;
}

@media (min-width: 576px) { /* Poprawka layoutu dla #newsletter */
    .newsletter-form {
        flex-direction: row;
    }
    .newsletter-form input[type="email"] {
       flex-grow: 1;
    }
}

/* Blog Section (#blog) */
/* Używa .container, .section, .grid, .blog-grid, .card, .card-content, .chips, .btn-text, .text-center, .btn-secondary */
.blog-card .card-content h3 { /* Ewentualne dostosowanie H3 w karcie bloga */
    font-size: 1.3rem; /* Przykładowo */
}

/* Contact Section (#contact) */
/* Używa .container, .section, .text-center */
#contact p strong { /* Pogrubienie "Email:" */
    color: var(--text-color); /* Dla pewności, że jest czytelne */
}


/* --- Footer --- */
.footer {
    background-color: var(--dark-gray-color);
    color: var(--light-gray-color);
    padding: 1rem 0;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.footer-links a, .social-links a {
    color: var(--light-gray-color);
    margin: 0 0.5rem;
}
.footer-links a:hover, .social-links a:hover {
    color: var(--white-color);
}
.social-links i {
    font-size: 1.5rem;
}
.copyright {
    font-size: 0.9rem;
    margin-top: 0.3rem;
    color: var(--medium-gray-color);
}


/* --- Responsive Adjustments (General) --- */

/* Przełącznik nawigacji mobilnej */
@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}

/* Responsywność dla Promo / Feature */
@media (max-width: 991px) {
    .promo-section h2 { font-size: 2.4rem; }
    .promo-content, .feature-content { flex-direction: column; gap: 2.5rem; }
    .promo-image { flex-basis: auto; width: 70%; max-width: 300px; margin-top: 2rem; order: 1; }
    .feature-image { flex-basis: auto; width: 100%; max-width: 500px; order: 1; margin: 0 auto; }
    .promo-text, .feature-text { order: 2; text-align: center; }
    .promo-section h2, .feature-text h2, .feature-text .subheading { text-align: center; }
    .promo-section p { font-size: 1rem; }
    .feature-checklist { max-width: 500px; margin-left: auto; margin-right: auto; text-align: left; }
}

/* Responsywność dla Ebook/Wyzwanie */
@media (max-width: 991px) {
    .challenge-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .challenge-image { max-width: 350px; margin: 0 auto; }
    .challenge-text h2, .challenge-text .section-label { text-align: center; }
    .challenge-text { text-align: center; }
    .checklist { text-align: left; max-width: 500px; margin-left: auto; margin-right: auto; }
}

/* Drobne poprawki dla mniejszych ekranów */
@media (max-width: 576px) {
    .promo-section h2, .feature-text h2, .challenge-text h2 { font-size: 1.8rem; }
    .feature-text .subheading { font-size: 1.1rem; }
    .checklist li { padding-left: 2em; margin-bottom: 0.6rem; }
    .checklist li i { font-size: 1.1em; }
    .feature-button.btn-course { width: 100%; max-width: 350px; }
}

/* --- Koniec Pliku --- */

 /* Contact Specific Styles */
 .contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.section-title {
    position: relative;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-icon {
    font-size: 24px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.contact-info:hover .contact-icon {
    background: var(--accent-color);
    transform: rotate(360deg);
}

.contact-heading {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-text {
    color: #666;
    margin-bottom: 15px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.contact-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Style dla listy emaili */
.email-list {
    margin: 20px 0;
}

.email-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e4e7eb;
}

.email-item:last-child {
    border-bottom: none;
}

.email-label {
    display: block;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.social-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e4e7eb;
    color: var(--dark-color);
    font-size: 18px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.25);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.contact-decoration {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
}

.decoration-1 {
    top: 10%;
    left: 5%;
    font-size: 120px;
    transform: rotate(-15deg);
}

.decoration-2 {
    bottom: 10%;
    right: 5%;
    font-size: 100px;
    transform: rotate(15deg);
}

 /* Dodatek do rozszerzenia tła na całą szerokość */
 .full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Responsywność */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* --- Moje customowe --- */
#p-hero {
    font-weight: bold;
    font-size: 1.2em;
    letter-spacing: 1px;
}

#p-promo-ebook {
    font-weight: bold; 
    letter-spacing: 1px;
}