<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --primary-color: #ff4081;
  --secondary-color: #1e1e1e;
  --text-color: #e0e0e0;
  --bg-color: #121212;
  --highlight-color: #ff79b0;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Header Styles */
header {
  background-color: var(--secondary-color);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--highlight-color);
}

.logo i {
  margin-right: 10px;
  font-size: 1.2em;
}

nav {
  display: flex;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

nav a:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, var(--highlight-color), transparent);
  transition: all 0.5s;
}

nav a:hover:before {
  left: 100%;
}

nav a:hover {
  color: var(--primary-color);
  background-color: rgba(255,255,255,0.1);
}

/* Home Page Styles */
.area-select {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

.area-btn {
  background-color: var(--secondary-color);
  color: var(--text-color);
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.area-btn:hover, .area-btn.active {
  background-color: var(--primary-color);
}

.profiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background-color: var(--secondary-color);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: 1.2em;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.card-text {
  font-size: 0.9em;
  margin-bottom: 10px;
}

.card-area {
  display: flex;
  align-items: center;
  color: #b0b0b0;
  font-size: 0.8em;
}

.card-area i {
  margin-right: 5px;
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.pagination a {
  color: var(--text-color);
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 0.3s;
  border: 1px solid var(--secondary-color);
  margin: 0 4px 8px 4px;
}

.pagination a.active {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
}

.pagination a:hover:not(.active) {
  background-color: var(--secondary-color);
}

/* Single Post Page Styles */
.profile-container {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  background-color: var(--secondary-color);
  border-radius: 10px;
  overflow: hidden;
}

.profile-image {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.profile-content {
  padding: 30px;
}

.profile-content h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.8em;
}

.profile-description, .profile-services, .profile-pricing {
  margin-bottom: 30px;
}

.profile-description p, .profile-services p {
  line-height: 1.6;
}

.profile-services ul {
  list-style-type: none;
  padding-left: 0;
}

.profile-services li {
  margin-bottom: 10px;
}

.profile-services li:before {
  content: "â€¢";
  color: var(--primary-color);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.profile-pricing {
  background-color: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 5px;
}

.profile-pricing h3 {
  color: var(--highlight-color);
  margin-bottom: 15px;
}

.cta-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
  text-align: center;
}

.cta-button a {
  color: white;
  text-decoration: none;
  display: block;
}

.cta-button:hover {
  background-color: var(--highlight-color);
}

/* FAQ Section */
.faq {
  margin-top: 50px;
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 8px;
}

.faq h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  font-weight: bold;
  margin-bottom: 10px;
}

/* Footer Styles */
footer {
  background-color: var(--secondary-color);
  padding: 50px 0;
  margin-top: 50px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.footer-section {
  margin-bottom: 20px;
  flex: 1 1 200px;
  max-width: 300px;
}

.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--text-color);
  text-decoration: none;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 30px;
}

/* Media Queries */
@media (min-width: 768px) {
  .profile-container {
    flex-direction: row;
  }

  .profile-image {
    flex: 1;
    max-width: 400px;
  }

  .profile-content {
    flex: 2;
  }

  .header-content {
    flex-wrap: nowrap;
  }

  .logo {
    margin-bottom: 0;
  }

  nav {
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .header-content {
    justify-content: center;
  }

  nav {
    justify-content: center;
    width: 100%;
  }

  .profile-image img {
    max-height: 300px;
  }

  .profile-content h1 {
    font-size: 1.5em;
  }

  .cta-button {
    font-size: 1em;
    padding: 12px 24px;
  }

  .profiles {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .footer-section {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .logo {
    font-size: 1.2em;
  }

  .area-btn {
    padding: 8px 15px;
  }

  .profiles {
    grid-template-columns: 1fr;
  }
}
</pre></body></html>