<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Reset */
body,
h1,
p,
ul,
li,
a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Page Styling */
html,
body {
  height: 100%;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #121212, #333);
  color: #ddd;
}

/* Main Wrapper */
main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between; /* Space hero and services vertically */
}

/* Header Section */
.main-header {
  height: 10vh;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.header-image {
  background-image: url('images/Florence_footer.png');
  background-size: cover;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
}

.logo {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  width: 115px;
  height: 115px;
  transition: transform 1s ease;
}

.logo:hover {
  transform: translateY(-50%) rotate(360deg);
}

/* Hero Section */
.hero {
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  background: linear-gradient(135deg, #212121, #333);
  color: white;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 500px;
}

/* 200 Robux Red Text */
.robux-red {
  color: #e63946; /* Florence's signature red */
  font-weight: bold;
  font-size: 1.5rem;
}

/* Services Section - Moved to the bottom */
.services-section {
  padding: 20px 0;
  background: linear-gradient(135deg, #212121, #333);
  color: #ddd;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px;
}

.services-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
}

.service-card {
  background: #444;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 54.1px;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
}

.service-card p {
  font-size: 1rem;
  color: #aaa;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* Footer Section */
footer {
  text-align: center;
  background-color: #121212;
  color: #ddd;
  padding: 15px 0;
  font-size: 0.9rem;
}















</pre></body></html>