```css
:root {
    --ocean-blue: #1a6bb0;
    --gold: #d4af37;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

body {
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--light-gray);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: var(--white);
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background-color: var(--gold);
    color: var(--dark-gray);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--white);
}
/* Highlights Section */
.highlight-section {
  padding: 5rem 2rem;
  background-color: #f8f9fa;
  text-align: center;
}

.highlight-title {
  color: #1a6bb0;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
}

.highlight-icon {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  color: #1a6bb0;
  margin-bottom: 1rem;
}

/* Featured Properties */
.featured-properties {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-properties h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--ocean-blue);
    font-size: 2.5rem;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.property-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-10px);
}

.property-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.property-info {
    padding: 1.5rem;
}

.property-info h3 {
    color: var(--ocean-blue);
    margin-bottom: 0.5rem;
}

.location {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.details {
    color: #666;
    margin-bottom: 1rem;
}

.property-button {
    display: inline-block;
    background-color: var(--ocean-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.property-button:hover {
    background-color: var(--gold);
    color: var(--dark-gray);
}

.view-all {
    display: block;
    text-align: center;
    color: var(--ocean-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.view-all:hover {
    text-decoration: underline;
}

/* About Section */
.about-section {
    background-color: var(--ocean-blue);
    color: var(--white);
    padding: 5rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-button {
    display: inline-block;
    background-color: var(--gold);
    color: var(--dark-gray);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-button:hover {
    background-color: var(--white);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Recife Highlights */
.recife-highlights {
    padding: 5rem 2rem;
    max-width: