.pricing-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 40px 32px;
  margin-bottom: 32px;
  margin-top: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(244, 160, 35, 0.1);
  border-top: 3px solid #f4a023;
}

.pricing-title {
  font-size: 2.2rem;
  margin-bottom: 32px;
  text-align: center;
  font-weight: 700;
  color: #1e1e1e;
}

.pricing-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-row {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.pricing-row-center {
  justify-content: center;
}

.pricing-row-center .pricing-box {
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  min-height: 200px;
}

.pricing-box {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(244, 160, 35, 0.12);
  font-size: 1.15rem;
  flex: 1;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4a023, #ff6b35);
  z-index: 1;
}

.pricing-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(244, 160, 35, 0.2);
  border-color: #f4a023;
}

.pricing-name {
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e1e1e;
  text-align: center;
  line-height: 1.3;
}

.pricing-price {
  font-size: 1.4rem;
  color: #f4a023;
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  font-size: 1.15rem;
  color: #666;
  margin-top: 30px;
  font-style: italic;
  line-height: 1.6;
  background: rgba(244, 160, 35, 0.05);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #f4a023;
}
.services-hero {
    background: linear-gradient(135deg, #f4a023 0%, #ff6b35 100%);
    color: #fff;
    padding: 100px 0;
    margin-top: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="dots" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="25" cy="5" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="15" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="20" fill="url(%23dots)"/></svg>') repeat;
    z-index: 1;
}

.services-hero > * {
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}

.services-hero p {
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.services-main {
    background: #fff;
    padding: 100px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 30, 30, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f4a023, #ff6b35);
    z-index: 1;
}

.service-card:hover {
    border-color: #f4a023;
}

.service-content {
    padding: 25px 30px 35px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 20px;
    text-align: center;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.25rem;
}

.social-media-section {
    padding: 80px 0;
    background: #fff;
    margin-top: 50px;
    border-top: 1px solid rgba(244, 160, 35, 0.1);
    position: relative;
}

.social-media-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.social-media-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e1e1e;
    margin-bottom: 50px;
    position: relative;
}

.social-media-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f4a023;
    border-radius: 2px;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.social-media-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.social-media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(244, 160, 35, 0.15);
    border-color: #f4a023;
}

.social-media-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: block;
}

.social-media-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.social-media-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.social-media-cta {
    background: linear-gradient(135deg, #f4a023 0%, #ff6b35 100%);
    color: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(244, 160, 35, 0.3);
    text-align: center;
}

.social-media-cta p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.services-cta {
    background: linear-gradient(135deg, #f4a023 0%, #ff6b35 100%);
    color: #fff;
    padding: 60px 40px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(244, 160, 35, 0.3);
    margin-top: 50px;
    border-top: 1px solid rgba(244, 160, 35, 0.1);
}

.services-cta h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.services-cta p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}