/* Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Section Wrappers */
.section-wrapper {
  width: 100%;
  background: white;
}

.section-wrapper.colored {
  background: transparent;
}

/* Section Heading */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h3 {
  font-size: 32px;
  color: #004AAD;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.section-heading p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 1px solid #E8ECF1;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 74, 173, 0.15);
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.card h4 {
  font-size: 18px;
  color: #004AAD;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.card-meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 12px;
}

.card-meta span {
  display: inline-block;
  margin-right: 15px;
}

.card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.card-btn {
  background: #004AAD;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.card-btn:hover {
  background: #003380;
}

.card-btn.secondary {
  background: #FF9900;
}

.card-btn.secondary:hover {
  background: #E68A00;
}

/* Info Cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.info-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #FF9900;
  transition: all 0.3s;
}

.info-card:hover {
  border-left-color: #004AAD;
  transform: scale(1.03);
}

.info-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
}

.info-card h4 {
  font-size: 18px;
  color: #004AAD;
  margin: 0 0 10px 0;
}

.info-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Ad Space Areas */
.ad-space {
  background: transparent;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.ad-space-inner {
  max-width: 1440px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.ad-placeholder {
  background: #F5F7FA;
  border: 2px dashed #E8ECF1;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
  width: 100%;
  max-width: 970px;
}

.ad-placeholder.sidebar {
  max-width: 300px;
  min-height: 250px;
  padding: 20px;
}

.ad-placeholder.header {
  max-width: 728px;
  min-height: 90px;
  padding: 20px;
}

/* Sidebar Ads */
.content-with-ads {
  display: grid;
  grid-template-columns: 1fr 1440px 1fr;
  gap: 20px;
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.sidebar-ad {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-ad .ad-placeholder {
  max-width: 300px;
  min-height: 600px;
  width: 100%;
}

.main-content-area {
  width: 100%;
}

/* Contact Form Styles */
.contact-wrapper {
  display: grid;
  gap: 40px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.contact-info-card {
  background: white;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #004AAD;
  transition: all 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 74, 173, 0.15);
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #F5F7FA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card h4 {
  font-size: 18px;
  color: #004AAD;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.contact-info-card p {
  font-size: 15px;
  color: #333;
  margin: 5px 0;
  font-weight: 500;
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-form {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #E8ECF1;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #004AAD;
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  background-color: white;
}

.submit-btn {
  background: linear-gradient(135deg, #FF9900 0%, #FF7700 100%);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #E68A00 0%, #E66900 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  display: none;
}

.form-message.success {
  background: #E8FFE8;
  color: #25D366;
  border: 1px solid #25D366;
  display: block;
}

.form-message.error {
  background: #FFE8E8;
  color: #FF5555;
  border: 1px solid #FF5555;
  display: block;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}