/* Główne style dla Portretka.pl */

/* ================ RESET I PODSTAWOWE STYLE ================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #a78295;
    --secondary-color: #f5e9e2;
    --text-color: #333333;
    --light-text: #666666;
    --bg-light: #fff;
    --bg-dark: #f9f9f9;
    --accent-color: #d14d72;
    --border-color: #e0e0e0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* ================ PRZYCISKI ================ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ================ NAWIGACJA ================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(5px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
  height: 50px; /* Przykładowa wysokość, dostosuj do swoich potrzeb */
  width: auto;  /* Zachowa proporcje obrazka */
  /* Możesz też użyć max-height, aby logo nie było większe niż określona wartość */
  /* max-height: 60px; */
  display: block; /* Może pomóc w niektórych układach */
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* ================ SEKCJA HERO ================ */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 650px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--light-text);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* ================ SEKCJA FEATURES ================ */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
    background-color: white;
    box-shadow: var(--shadow);
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-width: 60px;
    max-height: 60px;
}

.feature-item h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* ================ SEKCJA GALERII ================ */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: var(--transition);
}

.gallery-caption {
    color: white;
    padding: 20px;
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition);
    font-weight: 500;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ================ SEKCJA PROCESU ================ */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.process-steps {
    max-width: 900px;
    margin: 50px auto 0;
}

.process-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 25px;
    height: calc(100% - 50px);
    width: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* ================ SEKCJA OFERTY ================ */
.offer-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.offer-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.offer-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 40px;
    font-size: 0.85rem;
    transform: rotate(45deg);
    font-weight: 600;
    text-transform: uppercase;
}

.offer-header {
    background-color: var(--primary-color);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.featured .offer-header {
    background-color: var(--accent-color);
}

.offer-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.offer-size {
    font-size: 1rem;
    opacity: 0.8;
}

.offer-content {
    padding: 30px 25px;
}

.offer-features {
    margin-bottom: 30px;
}

.offer-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 25px;
}

.offer-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.featured .offer-features li:before {
    color: var(--accent-color);
}

.offer-price {
    font-size: 1.8rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-color);
}

.offer-note {
    text-align: center;
    font-style: italic;
    color: var(--light-text);
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ================ SEKCJA TESTIMONIALS ================ */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-item {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-8px);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-item blockquote {
    font-style: italic;
    position: relative;
    padding: 0 15px;
}

.testimonial-item blockquote::before,
.testimonial-item blockquote::after {
    content: '"';
    font-size: 2rem;
    position: absolute;
    color: var(--primary-color);
    opacity: 0.5;
}

.testimonial-item blockquote::before {
    top: -10px;
    left: -5px;
}

.testimonial-item blockquote::after {
    bottom: -30px;
    right: -5px;
}

.testimonial-author {
    text-align: right;
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

/* ================ SEKCJA O MNIE ================ */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-text h2 {
    text-align: left;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
}

/* ================ SEKCJA FAQ ================ */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--light-text);
}

/* ================ SEKCJA CTA ================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-section .btn-primary:hover {
    background-color: transparent;
    color: white;
}

/* ================ SEKCJA KONTAKT ================ */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(167, 130, 149, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.form-checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-submit {
    margin-top: 30px;
}

.file-input {
    opacity: 0;
    width: 0.1px;
    height: 0.1px;
    position: absolute;
    z-index: -1;
}

.file-input-info {
    padding: 15px;
    border: 2px dashed var(--border-color);
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.file-input-info:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

#form-status {
    margin-top: 20px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    display: none;
}

.status-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-method h3,
.social-contact h3 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-method p {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.social-icon img {
    width: 40px;
    height: 40px;
    transition: var(--transition);
}

.social-icon:hover img {
    transform: scale(1.1);
}

/* ================ STOPKA ================ */
.site-footer {
    background-color: #333;
    color: white;
    padding: 80px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-logo a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
    font-weight: 700;
}

.footer-logo p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
    display: flex;
    gap: 50px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ================ BACK TO TOP ================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.arrow-up {
    width: 15px;
    height: 15px;
    border-top: 3px solid white;
    border-left: 3px solid white;
    transform: rotate(45deg);
    margin-top: 5px;
}

/* ================ RESPONSYWNOŚĆ ================ */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-light);
        padding: 80px 30px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-nav.show {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 0 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 20px;
    }
    
    .process-step::after {
        display: none;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 150px 0 70px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .features-section,
    .gallery-section,
    .process-section,
    .offer-section,
    .testimonials-section,
    .about-section,
    .faq-section,
    .contact-section {
        padding: 70px 0;
    }
    
    .footer-links {
        width: 100%;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ================ ANIMACJE ================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Style dla bannera ciasteczek */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(28, 28, 30, 0.95);
  color: #fff;
  padding: 15px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cookie-button.accept {
  background-color: #4CAF50;
  color: white;
}

.cookie-button.reject {
  background-color: #f44336;
  color: white;
}

.cookie-button.customize {
  background-color: #2196F3;
  color: white;
}

.cookie-button:hover {
  opacity: 0.9;
}

/* Modal ustawień ciasteczek */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.cookie-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover {
  color: #000;
}

.cookie-settings-options {
  margin-top: 20px;
}

.cookie-option {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option label {
  font-weight: bold;
  margin-left: 5px;
}

.cookie-option p {
  margin: 5px 0 0 25px;
  font-size: 14px;
  color: #666;
}

.cookie-settings-buttons {
  margin-top: 20px;
  text-align: right;
}

@media (max-width: 768px) {
  .cookie-modal-content {
    margin: 20% auto;
    width: 90%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    margin-top: 15px;
  }
}
/* Style dla komunikatów formularza */
#form-status {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.success-message {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
    padding: 15px;
    border-radius: 5px;
}

.error-message {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
    padding: 15px;
    border-radius: 5px;
}

/* Styl dla wyświetlania informacji o wybranym pliku */
.file-input-info {
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
}

/* Styl dla przesyłania plików */
.file-input {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.file-input:hover {
    border-color: #999;
    background-color: #f0f0f0;
}

/* Animacja dla przycisku wysyłania podczas ładowania */
@keyframes buttonLoading {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

button[type="submit"]:disabled {
    animation: buttonLoading 1.5s infinite;
    cursor: wait;
}
.status-sending {
    color: #007bff; /* Niebieski */
    font-style: italic;
}
.status-success {
    color: green;
    font-weight: bold;
}
.status-error {
    color: red;
    font-weight: bold;
}
/* Styl dla aktywnego FAQ */
.faq-item.active .faq-question {
    font-weight: bold; /* Lub inny styl wskazujący na aktywność */
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out; /* Dodano padding do transition */
    padding-top: 0;  /* Dodane */
    padding-bottom: 0; /* Dodane */
    /* Możesz dodać inne style, np. border-top, jeśli chcesz oddzielić odpowiedź */
}