body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f7f7f7;
    }
    header {
      background-color: #2c3e50;
      color: white;
      padding: 20px;
      text-align: center;
    }
    header h1 {
      margin: 0;
      font-size: 28px;
    }
    main {
      max-width: 1000px;
      margin: 20px auto;
      padding: 0 20px;
    }
    .temple-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .temple {
      background: white;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .temple h2 {
      margin-top: 0;
      font-size: 20px;
      color: #34495e;
    }
    .temple p {
      font-size: 14px;
      color: #555;
    }
    .temple a {
      display: inline-block;
      margin-top: 10px;
      color: #2980b9;
      text-decoration: none;
    }
    .temple a:hover {
      text-decoration: underline;
    }
    footer {
      text-align: center;
      padding: 20px;
      font-size: 14px;
      color: #777;
      background: #ecf0f1;
      margin-top: 40px;
    }