﻿/* Cennik page styles */
:root {
  --primary-color: #8e44ad;
  --primary-dark: #6c3483;
  --primary-light: #9b59b6;
  --primary-very-light: #f4edf7;
  --secondary-color: #2c3e50;
  --text-color: #333333;
  --light-text: #666666;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --border-color: #e1e1e1;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Page title section */
.page-title-section {
  background-color: var(--primary-very-light);
  padding: 3rem 0;
  text-align: center;
}

.page-title-section h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin: 0;
  font-weight: 700;
}

/* Pricing section */
.pricing-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
}

.pricing-header h2 {
  color: var(--white);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.pricing-details {
  padding: 1.5rem;
}

.pricing-detail {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.pricing-detail:last-of-type {
  border-bottom: none;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-description {
  margin-top: 1rem;
  color: var(--light-text);
}

.pricing-description p {
  margin: 0;
  line-height: 1.5;
}

/* Additional info section */
.additional-info-section {
  padding: 4rem 0;
  background-color: var(--light-bg);
}

.additional-info-section h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.info-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  background-color: var(--white);
  padding: 1.25rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-list li img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.info-list li p {
  margin: 0;
  line-height: 1.5;
  color: var(--text-color);
}

/* Related topics section */
.related-topics-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.section-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.column h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.related-list {
  list-style: none;
  padding: 0;
}

.related-list li {
  margin-bottom: 0.75rem;
}

.related-list a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.related-list a:hover {
  color: var(--primary-color);
}

.related-list a img {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}

.specialist-info p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.specialist-info p:last-child {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.specialist-info img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

.map-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.route-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--primary-color);
  padding: 0.75rem;
  background-color: var(--white);
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.route-link:hover {
  background-color: var(--primary-very-light);
}

.route-link img {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background-color: #8e44ad;
  text-align: center;
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: white;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  min-width: 200px;
}

.btn-primary {
  background-color: white;
  color: #8e44ad;
  border: 2px solid white;
}

.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-title-section h1 {
    font-size: 2.2rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .section-columns {
    grid-template-columns: 1fr;
  }
  
  .page-title-section h1 {
    font-size: 2rem;
  }
  
  .column {
    margin-bottom: 2rem;
  }
  
  .column:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
  }
}

@media (max-width: 576px) {
  .page-title-section {
    padding: 2rem 0;
  }
  
  .page-title-section h1 {
    font-size: 1.8rem;
  }
  
  .pricing-section,
  .additional-info-section,
  .related-topics-section {
    padding: 3rem 0;
  }
  
  .additional-info-section h2 {
    font-size: 1.6rem;
  }
  
  .column h2 {
    font-size: 1.4rem;
  }
}