body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
      background: linear-gradient(to right, #f8f9fa, #ffffff);
      color: #333;
    }

    .contact-section {
      padding: 60px 20px;
      text-align: center;
    }

    .contact-section h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      color: #222;
    }

    .contact-section .subtitle {
      font-size: 1.2rem;
      margin-bottom: 40px;
      color: #555;
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      padding: 0 20px;
    }

    .contact-info, .map-container {
      flex: 1 1 300px;
      max-width: 500px;
      background: rgba(255, 255, 255, 0.95);
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .contact-info h3 {
      margin-top: 0;
      color: #004080;
    }

    .contact-info p {
      margin: 8px 0;
      line-height: 1.5;
    }

    .contact-info a {
      color: #0066cc;
      text-decoration: none;
    }

    .contact-info a:hover {
      text-decoration: underline;
    }

    .map-container iframe {
      border: none;
      width: 100%;
      height: 300px;
      border-radius: 12px;
    }

    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
        align-items: center;
      }
    }