/* Main Content */
.content {
    padding: 2rem;
    background-color: inherit; /* Tmavě šedá */
    width: 80vw;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #4b4b4b; /* Středně tmavá šedá */
    border-radius: 8px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.2rem;
    color: #8cc63f; /* Zelená */
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.6;
}

/* Details Section */
.details {
    padding: 2rem;
    background-color: #3a3a3a; /* Další tmavá šedá */
    border-radius: 8px;
    margin-bottom: 2rem;
}

.details h2 {
    color: #8cc63f;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.details ul {
    list-style-type: disc;
    padding-left: 2rem;
    color: #ffffff;
}

.details li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.details li strong {
    color: #8cc63f;
}

.details p {
    color: white;
}

/* Call to Action Section */
.cta {
    text-align: center;
    padding: 2rem;
    background-color: #4b4b4b; /* Středně tmavá šedá */
    border-radius: 8px;
}

.cta h2 {
    color: #8cc63f;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    color: #ffffff;
}

.cta ul li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

.cta ul li strong {
    color: #8cc63f;
}

.cta p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta .btn {
    padding: 0.8rem 2rem;
    background-color: #8cc63f;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.cta .btn:hover {
    background-color: #76b030; /* Tmavší zelená */
}

.hero, .details, .price-table, .cta {
    box-shadow: 5px 6px 13px 5px rgba(0, 0, 0, 0.95)
}

/* Obrázky přizpůsobené na šířku s oříznutím na výšku */
.hero-img,
.details-img,
.cta-img {
    width: 100%; /* Obrázek se roztáhne na plnou šířku kontejneru */
    height: 300px; /* Nastaví pevnou výšku obrázku */
    object-fit: cover; /* Ořízne obrázek podle dané výšky */
    object-position: center; /* Zajistí, že střed obrázku bude viditelný */
    border-radius: 8px; /* Volitelné zaoblení rohů */
    display: block;
    margin: 1rem auto; /* Vycentrování obrázku */
    padding-bottom: .5em;
}

.price-table {
    padding: 2rem;
    background-color: #3a3a3a; /* Matches site theme */
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Ensure the table container is scrollable on small devices */
.table-container {
    overflow-x: auto;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

.price-table th, .price-table td {
    padding: 12px 15px;
    text-align: center;
    color: #333;
    font-size: 1rem;
    border-bottom: 1px solid #ccc;
}

.price-table th {
    background-color: #8cc63f; /* Green header */
    color: white;
}

.price-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover effect for interactivity */
.price-table tr:hover {
    background-color: #e2e2e2;
}

.price-table h2 {
    text-align: center;
    font-size: 2rem;
    color: #8cc63f;
    margin-bottom: 1.5rem;
}

/* Responsive design for mobile devices */
@media screen and (max-width: 768px) {
    .price-table th, .price-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
}