/* Globalne style */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
}

/* Sekcja HERO */
.hero {
    background: linear-gradient(135deg, #6A0DAD, #9400D3);
    padding: 100px 0;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.25rem;
}

/* Funkcjonalności */
#features i {
    margin-bottom: 15px;
    color: #6A0DAD;
}

/* Cennik */
.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.price {
    font-size: 2rem;
    color: #6A0DAD;
    font-weight: bold;
}

.highlight {
    border: 2px solid #6A0DAD;
}

/* Formularz kontaktowy */
#contact form {
    max-width: 500px;
    margin: 20px auto;
}

#contact input, 
#contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact button {
    background: #6A0DAD;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
}

#contact button:hover {
    background: #9400D3;
}