html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #4CAF50;
  color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
}

header p {
  font-size: 1.2rem;
  margin: 0.5rem 0 0;
}

.section {
  padding: 20px;
  margin: 20px auto;
  max-width: 1200px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section ul {
  list-style: none;
  padding: 0;
}

.section ul li {
  margin: 10px 0;
}

.section.call-to-action {
  text-align: center;
  background: #f4f4f4;
  padding: 30px;
}

.section.call-to-action .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.section.call-to-action .btn:hover {
  background: #45a049;
}

.features {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}

.feature {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover i {
  transform: scale(1.1);
}

.feature-card h3 {
  color: #333;
  font-size: 1.4rem;
  margin: 1rem 0;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.cta {
  background: #2563eb;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.cta a {
  background: #1d4ed8;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  display: inline-block;
  margin-top: 1rem;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #666;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-section {
  max-width: 400px;
}

.footer-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 0.9rem;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.main-nav .logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.main-nav a.active {
  color: var(--primary-color);
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-description {
  max-width: 800px;
  margin: 0 auto;
}

.hero-description p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.hero-feature i {
  color: #fff;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 50%;
  margin-right: 8px;
}

.hero-cta {
  display: inline-block;
  background: #4CAF50;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0,0,0,0.2);
  background: #45a049;
}

.hero-contact {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 6rem 2rem;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.hero-contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-contact-text h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-contact-tagline {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.contact-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.highlight-item i {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
}

.contact-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  margin: 0;
}

.contact-form-wrapper h2 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
}

.contact-form-wrapper .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-wrapper textarea {
  width: calc(100% - 2rem);  /* Adjust width to account for padding */
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  resize: vertical;
}

.contact-form-wrapper .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

.contact-form {
  max-width: 800px;
  margin: 1rem auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

@media (max-width: 968px) {
  .hero-contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-contact-text h1 {
    font-size: 2.5rem;
  }

  .hero-contact {
    padding: 4rem 1.5rem;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.1);
}

.service-card h3 {
  color: #333;
  font-size: 1.4rem;
  margin: 1rem 0;
  font-weight: 600;
}

.service-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.contact-intro {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: calc(100% - 2rem);  /* Adjust width to account for padding */
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.btn {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background: var(--secondary-color);
}

/* Light theme variables */
:root {
  --footer-bg: #1E90FF; /* Polish shade of blue */
  --footer-text: #ffffff;
  --footer-link: #ffffff;
  --primary-color: #1E90FF;
  --secondary-color: #4CAF50;
}

/* Dark theme variables */
@media (prefers-color-scheme: dark) {
  :root {
    --footer-bg: #121212;
    --footer-text: #e0e0e0;
    --footer-link: #bb86fc;
  }
}