/* ===================================
   ROOFLYNX - MAIN STYLESHEET
   Pure CSS (No Tailwind)
   =================================== */

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}

.nav-desktop {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: #374151;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #2563eb;
}

.header-contact {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .header-contact {
    display: flex;
  }
}

.menu-toggle {
  display: block;
  padding: 0.5rem;
  color: #374151;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.nav-mobile {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile .nav-link {
  padding: 0.5rem 0;
}

.nav-mobile .header-contact {
  display: flex;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #2563eb, #1d4ed8);
  color: #fff;
  padding: 2rem 0;
}

@media (min-width: 640px) {
  .hero {
    padding: 3rem 0;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 5rem 0;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #bfdbfe;
}

@media (min-width: 640px) {
  .hero p {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .hero p {
    font-size: 1.25rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .btn {
    padding: 0.75rem 2rem;
  }
}

.btn-primary {
  background: #fff;
  color: #2563eb;
}

.btn-primary:hover {
  background: #eff6ff;
}

.btn-secondary {
  background: #1e40af;
  color: #fff;
  border: 1px solid #3b82f6;
}

.btn-secondary:hover {
  background: #1e3a8a;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .btn-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .trust-badges {
    grid-template-columns: 1fr 1fr;
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #93c5fd;
  flex-shrink: 0;
}

/* Quote Form */
.quote-form {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .quote-form {
    padding: 1.5rem;
  }
}

.quote-form h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .quote-form h2 {
    font-size: 1.25rem;
  }
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-checkbox input {
  margin-top: 0.25rem;
}

.form-checkbox label {
  font-size: 0.875rem;
  color: #6b7280;
}

.btn-submit {
  width: 100%;
  background: #2563eb;
  color: #fff;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #1d4ed8;
}

/* Sections */
.section {
  padding: 2.5rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 3rem 0;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 5rem 0;
  }
}

.section-gray {
  background: #f9fafb;
}

.section-blue {
  background: #eff6ff;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  color: #111827;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 0.875rem;
  text-align: center;
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

@media (min-width: 640px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

/* Grid Layouts */
.grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Service Card */
.service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.3s;
}

@media (min-width: 640px) {
  .service-card {
    padding: 2rem;
  }
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin-bottom: 1rem;
  color: #2563eb;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111827;
}

@media (min-width: 640px) {
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.service-card p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .service-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: #374151;
}

@media (min-width: 640px) {
  .service-features li {
    font-size: 0.875rem;
  }
}

.bullet {
  width: 0.375rem;
  height: 0.375rem;
  background: #2563eb;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Alternating Service Layout */
.service-alt {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .service-alt {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

.service-content {
  order: 1;
}

.service-image {
  order: 2;
}

.service-alt.reverse .service-content {
  order: 2;
}

.service-alt.reverse .service-image {
  order: 1;
}

@media (max-width: 1023px) {
  .service-alt.reverse .service-content,
  .service-alt.reverse .service-image {
    order: initial;
  }
}

.service-content h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

@media (min-width: 640px) {
  .service-content h3 {
    font-size: 1.5rem;
  }
}

.icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .icon-wrapper {
    width: 3rem;
    height: 3rem;
  }
}

.service-content p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .service-content p {
    font-size: 1rem;
  }
}

.feature-list {
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.feature-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-item span {
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .feature-item span {
    font-size: 1rem;
  }
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Why Choose Cards */
.why-card {
  display: flex;
  gap: 1rem;
}

.why-icon {
  width: 3rem;
  height: 3rem;
  background: #2563eb;
  color: #fff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-content h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111827;
}

@media (min-width: 640px) {
  .why-content h3 {
    font-size: 1rem;
  }
}

.why-content p {
  font-size: 0.75rem;
  color: #6b7280;
}

@media (min-width: 640px) {
  .why-content p {
    font-size: 0.875rem;
  }
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.testimonial-card p {
  font-size: 0.875rem;
  color: #374151;
  font-style: italic;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .testimonial-card p {
    font-size: 1rem;
  }
}

.testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

@media (min-width: 640px) {
  .testimonial-author {
    font-size: 1rem;
  }
}

.testimonial-location {
  font-size: 0.75rem;
  color: #6b7280;
}

@media (min-width: 640px) {
  .testimonial-location {
    font-size: 0.875rem;
  }
}

/* How It Works */
.step-card {
  text-align: center;
}

.step-number {
  width: 3.5rem;
  height: 3.5rem;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

@media (min-width: 640px) {
  .step-number {
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
  }
}

.step-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111827;
}

@media (min-width: 640px) {
  .step-card h3 {
    font-size: 1rem;
  }
}

.step-card p {
  font-size: 0.75rem;
  color: #6b7280;
}

@media (min-width: 640px) {
  .step-card p {
    font-size: 0.875rem;
  }
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 2rem;
  }
}

.pricing-card.featured {
  background: #2563eb;
  color: #fff;
  transform: scale(1);
}

@media (min-width: 768px) {
  .pricing-card.featured {
    transform: scale(1.05);
  }
}

.pricing-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .pricing-card h3 {
    font-size: 1.25rem;
  }
}

.pricing-amount {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .pricing-amount {
    font-size: 1.875rem;
  }
}

.pricing-card:not(.featured) .pricing-amount {
  color: #2563eb;
}

.pricing-features {
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .pricing-features li {
    font-size: 0.875rem;
  }
}

.pricing-card:not(.featured) .pricing-features li {
  color: #6b7280;
}

.pricing-features svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.pricing-card:not(.featured) .pricing-features svg {
  color: #10b981;
}

/* CTA Banner */
.cta-banner {
  background: #2563eb;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

@media (min-width: 640px) {
  .cta-banner {
    padding: 2.5rem 0;
  }
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 3rem 0;
  }
}

.cta-banner h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .cta-banner h2 {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .cta-banner h2 {
    font-size: 1.875rem;
  }
}

.cta-banner p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #bfdbfe;
}

@media (min-width: 640px) {
  .cta-banner p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .cta-banner p {
    font-size: 1.25rem;
  }
}

.cta-banner .btn {
  font-size: 1rem;
}

@media (min-width: 640px) {
  .cta-banner .btn {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .cta-banner .btn {
    font-size: 1.25rem;
  }
}

/* Emergency Banner */
.emergency-banner {
  background: #dc2626;
  color: #fff;
  padding: 1.5rem 0;
  text-align: center;
}

@media (min-width: 640px) {
  .emergency-banner {
    padding: 2rem 0;
  }
}

.emergency-banner h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .emergency-banner h2 {
    font-size: 1.5rem;
  }
}

.emergency-banner p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .emergency-banner p {
    font-size: 1rem;
  }
}

.emergency-banner .btn {
  background: #fff;
  color: #dc2626;
  font-weight: 600;
}

.emergency-banner .btn:hover {
  background: #f3f4f6;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .stat-number {
    font-size: 2.25rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

@media (min-width: 640px) {
  .stat-label {
    font-size: 1rem;
  }
}

/* FAQ */
.faq-container {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .faq-item {
    margin-bottom: 1rem;
  }
}

.faq-question {
  width: 100%;
  padding: 1rem;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .faq-question {
    padding: 1.5rem;
    font-size: 1rem;
  }
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
  flex-shrink: 0;
  transition: transform 0.3s;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9fafb;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 1rem;
  color: #6b7280;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .faq-answer-content {
    padding: 1.5rem;
    font-size: 1rem;
  }
}

/* Contact Info Cards */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: #eff6ff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
}

@media (min-width: 640px) {
  .contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.contact-details h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #111827;
}

@media (min-width: 640px) {
  .contact-details h3 {
    font-size: 1rem;
  }
}

.contact-details p,
.contact-details a {
  font-size: 0.875rem;
  color: #6b7280;
}

@media (min-width: 640px) {
  .contact-details p,
  .contact-details a {
    font-size: 1rem;
  }
}

.contact-details a {
  color: #2563eb;
}

.contact-details a:hover {
  color: #1d4ed8;
}

.map-container {
  background: #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 12rem;
}

@media (min-width: 640px) {
  .map-container {
    height: 14rem;
  }
}

@media (min-width: 768px) {
  .map-container {
    height: 16rem;
  }
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Content Pages */
.content-page {
  max-width: 56rem;
  margin: 0 auto;
}

.content-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .content-page h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.content-page h2:first-of-type {
  margin-top: 0;
}

.content-page p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .content-page p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.content-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #6b7280;
}

@media (min-width: 640px) {
  .content-page ul {
    margin-bottom: 1.5rem;
  }
}

.content-page ul li {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .content-page ul li {
    font-size: 1rem;
  }
}

.contact-box {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
}

.contact-box p {
  color: #374151;
  margin-bottom: 0;
}

.contact-box strong {
  font-weight: 600;
}

/* Footer */
.footer {
  background: #111827;
  color: #fff;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 1rem;
}

.footer h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p,
.footer li,
.footer a {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer a:hover {
  color: #fff;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer-contact li {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  color: #60a5fa;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.hidden {
  display: none;
}

/* SVG Icons */
.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}
