/* Base Styles */
:root {
    --primary-color: #0A5D36; /* Dark green from branding */
    --secondary-color: #16A86C; /* Lighter green from branding */
    --accent-color: #D92E79; /* Magenta/pink accent from branding */
    --accent-gradient: linear-gradient(135deg, #C33A68 0%, #EF4881 100%); /* Pink gradient */
    --primary-gradient: linear-gradient(135deg, #144633 0%, #427059 100%); /* Green gradient */
    --light-color: #ECF0F1;
    --dark-color: #0A3D22; /* Darkest green from brand gradient */
    --text-color: #333;
    --text-light: #777;
    --border-color: #ddd;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #144633 0%, #427059 100%); /* Green gradient - updated */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
}

h1, .h1 {
    font-weight: 900; /* Using Outfit Black */
}

h2, .h2, h3, .h3 {
    font-weight: 900; /* Using Outfit Black */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-color);
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 50px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0f3826 0%, #365f4c 100%); /* Slightly darker gradient */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(22, 168, 108, 0.3);
}

.btn-secondary {
    background: var(--accent-gradient);
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #b0325c 0%, #da4375 100%); /* Slightly darker gradient */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 46, 121, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(22, 168, 108, 0.3);
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header.transparent {
    background-color: transparent;
    box-shadow: none;
}

.header.transparent .nav-link {
    color: white;
}

.header-top {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    margin-right: 30px;
    width: 180px;
    height: 45px;
    display: block;
    overflow: visible;
}

.logo a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.logo-img {
    max-height: 45px;
    width: auto;
    display: block;
    transition: opacity 0.6s ease-in-out, transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: absolute;
    top: 0;
    left: 0;
}

.logo-white {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    z-index: 2;
}

.logo-black {
    opacity: 0;
    transform: translateY(15px) rotate(-5deg);
    z-index: 1;
}

/* When header becomes non-transparent, toggle logos with enhanced animation */
.header:not(.transparent) .logo-white {
    opacity: 0;
    transform: translateY(-15px) rotate(5deg);
}

.header:not(.transparent) .logo-black {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.logo h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.logo h1:before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    margin-right: 8px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.logo span {
    color: var(--accent-color);
    font-weight: 700;
}

/* Menu Styling */
.main-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    font-weight: 500;
    position: relative;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 16px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.header.transparent .main-nav ul li a {
    color: white;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--accent-color);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Animation for menu items */
.main-nav ul li {
    opacity: 0;
    animation: fadeInMenu 0.5s ease forwards;
}

.main-nav ul li:nth-child(1) {
    animation-delay: 0.1s;
}

.main-nav ul li:nth-child(2) {
    animation-delay: 0.2s;
}

.main-nav ul li:nth-child(3) {
    animation-delay: 0.3s;
}

.main-nav ul li:nth-child(4) {
    animation-delay: 0.4s;
}

.main-nav ul li:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fix for WordPress specific menu classes */
.primary-menu {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
}

.menu-item a {
    font-weight: 500;
    position: relative;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 16px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.header.transparent .menu-item a {
    color: white;
}

.menu-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.menu-item a:hover {
    color: var(--accent-color);
}

.menu-item a:hover::after {
    width: 100%;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    display: flex;
    align-items: flex-start;
    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: white;
    overflow: visible;
}

.hero-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
    text-align: left;
}

.property-search-container {
    position: relative;
    z-index: 3;
    margin-top: 30px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: 0;
    align-self: flex-start;
}

.parallax {
    background-attachment: fixed;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 0 0 auto;
    text-align: left;
    padding-right: 30px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

/* Property Search Styles */
.property-search-container {
    position: relative;
    z-index: 3;
    margin-top: 30px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: 0;
    align-self: flex-start;
}

.property-search {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.search-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.search-tab {
    flex: 1;
    padding: 12px 15px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.search-tab.active {
    color: var(--secondary-color);
}

.search-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
}

.search-content {
    padding: 20px;
    overflow: visible;
}

.search-form {
    display: none;
    overflow: visible;
}

.search-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
    overflow: visible;
}

.search-form h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--primary-color);
}

/* Detailed Form Styles */
.detailed-form {
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.valuation-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
}

.valuation-form label {
    display: block;
    margin-bottom: 3px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 13px;
}

.valuation-form input,
.valuation-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.valuation-form input:focus,
.valuation-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(22, 168, 108, 0.2);
}

.valuation-form button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 5px;
    padding: 10px 15px;
    font-size: 16px;
}

/* Form group styles */
.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
    margin-bottom: 0;
}

input, select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

input:focus, select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(22, 168, 108, 0.2);
}

/* Section Header Styles */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: 20px auto 0;
    background: var(--accent-gradient);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* AI Advantage Section Styles */
.advantage-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: rgba(22, 168, 108, 0.1);
    transition: var(--transition);
}

.card-icon i {
    font-size: 36px;
    color: var(--secondary-color);
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.advantage-card p {
    color: var(--text-light);
}

/* Property Card Styles */
.featured-properties {
    position: relative;
    background-color: #f9f9f9;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2316A86C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.property-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.property-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 10px;
    background-color: var(--accent-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 1;
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.favorite-btn:hover {
    background-color: var(--accent-color);
}

.property-content {
    padding: 20px;
}

.property-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.property-price {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.property-location {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.property-location i {
    margin-right: 5px;
}

.property-details {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.property-details span {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.property-details i {
    margin-right: 5px;
    color: var(--secondary-color);
}

/* Testimonial Styles */
.testimonials {
    position: relative;
    background: url('https://images.unsplash.com/photo-1600607688969-a5bfcd646154?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    background-attachment: fixed;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 240, 240, 0.9) 100%);
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding-top: 20px;
    margin-bottom: 20px;
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--accent-color);
    opacity: 0.3;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.author-info p {
    font-size: 14px;
    color: var(--accent-color);
}

/* CTA Section Styles */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: white;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Footer Styles */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--light-color);
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-info li i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background-color: var(--accent-color);
    color: white;
    border-radius: 0 4px 4px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom ul {
    display: flex;
    gap: 20px;
}

.footer-bottom ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom ul li a:hover {
    color: white;
}

/* Animation Classes */
.animate-from-bottom {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s ease forwards;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-600 {
    animation-delay: 0.6s;
}

/* Form highlight animation */
@keyframes formHighlight {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(52, 152, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

.search-form.highlight {
    animation: formHighlight 1.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
        height: auto;
        min-height: unset;
    }
    
    .hero-section .container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
        padding-right: 0;
    }
    
    .property-search-container {
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .header-actions .btn-outline {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
        height: auto;
    }
    
    .search-tab {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo {
        width: 150px;
        height: 35px;
    }
    
    .logo-img {
        max-height: 35px;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .search-tabs {
        flex-direction: column;
    }
    
    .search-tab {
        border-bottom: 1px solid var(--border-color);
    }
    
    .search-tab.active::after {
        display: none;
    }
    
    .footer-top {
        gap: 30px;
    }
    
    .property-search-container {
        margin-top: 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .valuation-form {
        grid-template-columns: 1fr;
        padding-bottom: 20px;
    }
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
        height: auto;
        min-height: auto;
    }
    
    .step {
        margin: 0 8px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #eee;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 600;
        color: #777;
        margin: 0 auto 5px;
        transition: var(--transition);
    }
    
    .step.active .step-number {
        background-color: var(--secondary-color);
        color: white;
    }
    
    .step.completed .step-number {
        background-color: var(--accent-color);
        color: white;
    }
    
    .step-title {
        font-size: 10px;
    }
    
    .step-connector {
        min-width: 20px;
        width: 20px;
    }
    
    .form-buttons {
        flex-direction: column-reverse;
        gap: 10px;
    }
    
    .form-buttons button {
        max-width: 100%;
    }

    .bedrooms-bathrooms-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* Form validation styles */
.input-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

.validation-error {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

.form-hint {
    display: block;
    color: #777;
    font-size: 12px;
    margin-top: 5px;
    font-style: italic;
}

/* Form response styles */
.form-response {
    margin-top: 15px;
    padding: 0;
    transition: all 0.3s ease;
}

.form-response.success {
    background-color: rgba(22, 168, 108, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 15px;
    border-radius: 4px;
}

.form-response.error {
    background-color: rgba(217, 46, 121, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 15px;
    border-radius: 4px;
    animation: error-pulse 2s ease;
}

@keyframes error-pulse {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

.success-message, .error-message {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
}

.success-message {
    color: #27ae60;
}

.error-message {
    color: #c0392b;
}

.form-response ul {
    margin: 10px 0 0 25px;
    padding: 0;
    list-style-type: disc;
    color: #c0392b;
    font-size: 14px;
}

.error-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(231, 76, 60, 0.2);
    font-size: 14px;
    color: #555;
}

.error-details ul {
    color: #555;
    margin: 10px 0 0 25px;
}

.error-details a {
    color: var(--secondary-color);
    font-weight: 500;
}

.error-details a:hover {
    text-decoration: underline;
}

/* Multi-step form styles */
.multi-step-form {
    position: relative;
    overflow: visible;
}

/* Step indicators */
.form-steps-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    overflow: visible;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 15px;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #777;
    margin: 0 auto 5px;
    transition: var(--transition);
}

.step.active .step-number {
    background-color: var(--secondary-color);
    color: white;
}

.step.completed .step-number {
    background-color: var(--accent-color);
    color: white;
}

.step-title {
    font-size: 12px;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
}

.step.active .step-title, 
.step.completed .step-title {
    color: var(--primary-color);
    font-weight: 600;
}

.step-connector {
    height: 2px;
    background-color: #e0e0e0;
    margin: 0 5px;
    position: relative;
    z-index: 1;
    min-width: 30px;
    width: 30px;
}

.step-connector.active {
    background-color: var(--secondary-color);
}

/* Form steps */
.form-step {
    display: none;
    animation-duration: 0.3s;
    animation-fill-mode: both;
    overflow: visible;
}

.form-step.active {
    display: block;
    overflow: visible;
}

.form-step.slide-in-right {
    animation-name: slideInRight;
}

.form-step.slide-in-left {
    animation-name: slideInLeft;
}

.form-step.slide-out-left {
    animation-name: slideOutLeft;
}

.form-step.slide-out-right {
    animation-name: slideOutRight;
}

/* Form buttons */
.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

.form-buttons button {
    flex: 1;
    max-width: 48%;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Shake animation for validation errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* Form loader overlay */
.form-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 8px;
    animation: fadeIn 0.3s ease;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.form-loader-overlay p {
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Confetti animation */
.confetti-container {
    position: fixed;
    top: -10vh;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    border-radius: 0;
    animation: confetti-fall 5s linear forwards;
    transform: rotate(0deg);
}

@keyframes confetti-fall {
    0% {
        top: -10px;
        transform: rotate(0deg) translateX(0);
        opacity: 1;
    }
    25% {
        transform: rotate(90deg) translateX(20px);
    }
    50% {
        transform: rotate(180deg) translateX(-20px);
        opacity: 1;
    }
    75% {
        transform: rotate(270deg) translateX(20px);
    }
    100% {
        top: 100vh;
        transform: rotate(360deg) translateX(0);
        opacity: 0;
    }
}

/* Fade out animation */
.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Enhanced success message */
.success-message {
    text-align: center;
    padding: 30px 20px;
    margin: 20px 0;
    animation: successFadeIn 0.8s ease;
}

.success-message i {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 15px;
    display: block;
    animation: successBounce 1s ease;
}

.success-message h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.success-message p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.5;
}

/* Success message animations */
@keyframes successFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successBounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

/* Add styles for Sales/Lettings toggle */
.sales-lettings-toggle {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
    margin-top: 20px;
}

.toggle-container {
    display: inline-flex;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.toggle-option {
    padding: 8px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.toggle-option.active {
    background: var(--accent-gradient);
    color: white;
}

/* Styles for the redesigned hero content */
.promise-heading {
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 600;
    color: white;
}

.hero-content .pillars-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.hero-content .pillar-box {
    background-color: white;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-content .pillar-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-content .pillar-box h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.promise-text-block {
    background-color: white;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.promise-text-block p {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.welcome-message {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.welcome-message p {
    font-size: 22px;
    font-weight: 500;
}

.brand-text {
    font-family: var(--font-headings);
    font-weight: 900;
    color: white !important;
    text-decoration: none;
    display: inline-block;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content .pillars-container {
        grid-template-columns: 1fr;
    }
    
    .toggle-option {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* Pillar Tabs Styles */
.pillar-tab {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.pillar-tab.active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid transparent;
    border-image: var(--accent-gradient);
    border-image-slice: 1;
}

.pillar-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.pillar-content.active {
    display: block;
}

/* GetAddress Autocomplete Styles */
.getaddress-autocomplete {
    position: relative;
}

.getaddress-autocomplete-input {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.getaddress-autocomplete-input:focus {
    border-color: #16A86C;
    box-shadow: 0 0 0 3px rgba(22, 168, 108, 0.2);
    outline: none;
}

.getaddress-autocomplete-input::placeholder {
    color: #aaa;
}

.getaddress-autocomplete-list {
    position: absolute;
    z-index: 1000;
    background: white;
    border: 1px solid #16A86C;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 2px;
    font-size: 14px;
    color: #333;
    animation: dropdownFadeIn 0.2s ease-out;
}

.getaddress-autocomplete-list-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f2f2f2;
    transition: all 0.2s ease;
}

.getaddress-autocomplete-list-item:hover, 
.getaddress-autocomplete-list-item.selected {
    background-color: rgba(22, 168, 108, 0.1);
    color: #16A86C;
    font-weight: 500;
}

.getaddress-autocomplete-list-item:last-child {
    border-bottom: none;
}

.address-fields-container {
    display: none;
}

.address-fields-container.visible {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Loading indicator */
.getaddress-loading {
    position: absolute;
    z-index: 1000;
    width: 100%;
    padding: 15px;
    background: white;
    border: 1px solid #16A86C;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 2px;
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.getaddress-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(22, 168, 108, 0.3);
    border-radius: 50%;
    border-top-color: #16A86C;
    animation: spin 0.8s linear infinite;
    margin-right: 10px;
}

/* No results message */
.getaddress-no-results {
    position: absolute;
    z-index: 1000;
    width: 100%;
    padding: 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 2px;
    color: #666;
    font-size: 14px;
    text-align: center;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Update styles for the header toggle */
.header-actions .sales-lettings-toggle {
    margin: 0 15px 0 0;
}

.header-actions .toggle-container {
    height: 40px;
    display: flex;
    align-items: center;
}

.header-actions .toggle-option {
    padding: 6px 20px;
    font-size: 14px;
}

/* Pre-launch specific styles */
.pillar-box {
    padding: 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.pillar-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.pillars-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.statistic-box {
    padding: 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.statistic-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.statistic-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background-color: #f0f0f0;
    margin: 50px 0;
}

.video-placeholder:after {
    content: "Coming Soon";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
}

.video-placeholder:before {
    content: "\f144"; /* Play icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 64px;
    color: var(--secondary-color);
    opacity: 0.7;
}

/* Subtle Background Images for Alternating Sections */
#promise {
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
}

#video {
    background-image: url('https://images.unsplash.com/photo-1613977257363-707ba9348227?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
}

/* Overlay to ensure text is readable */
#promise::before,
#video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

/* Make sure content is above background */
#promise .container,
#video .container {
    position: relative;
    z-index: 1;
}

/* Side by side fields with explicit widths */
.side-by-side-fields {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 15px;
}

.field-half {
    width: 45%;
}

.field-half label {
    display: block;
    margin-bottom: 3px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 13px;
}

.field-half input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.field-half input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(22, 168, 108, 0.2);
}

/* Ensure these fields stay side by side on all devices above mobile */
@media (max-width: 480px) {
    .side-by-side-fields {
        flex-direction: column;
    }
    
    .field-half {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* reCAPTCHA styling */
.recaptcha-container {
    margin-bottom: 20px;
}

.recaptcha-container label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.recaptcha-container .g-recaptcha {
    margin-bottom: 5px;
}

.recaptcha-container .form-hint {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Make reCAPTCHA responsive */
@media screen and (max-width: 480px) {
    .g-recaptcha {
        transform-origin: 0 0;
        transform: scale(0.85);
    }
}

/* Buyer form styling */
.buyer-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
}

.buyer-form .form-group {
    margin-bottom: 10px;
}

.buyer-form label {
    display: block;
    margin-bottom: 3px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 13px;
}

.buyer-form input,
.buyer-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.buyer-form input:focus,
.buyer-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(22, 168, 108, 0.2);
}

.buyer-form button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 5px;
    padding: 10px 15px;
    font-size: 16px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Sub-menu styling */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 100;
}

.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu .menu-item {
    margin: 0;
    padding: 0;
    width: 100%;
}

.sub-menu .menu-item a {
    display: block;
    padding: 8px 15px;
    color: var(--primary-color);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sub-menu .menu-item a:hover {
    background-color: rgba(0, 0, 0, 0.03);
    color: var(--accent-color);
}

.sub-menu .menu-item a::after {
    display: none;
}

/* Current/active menu item styling */
.current-menu-item > a,
.current-menu-parent > a,
.current-menu-ancestor > a {
    color: var(--accent-color) !important;
    font-weight: 600;
}

.current-menu-item > a::after,
.current-menu-parent > a::after,
.current-menu-ancestor > a::after {
    width: 100%;
}

/* Mobile menu toggle button */
.dropdown-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 16px;
    margin-left: 5px;
    cursor: pointer;
    padding: 5px;
}

.dropdown-toggle:focus {
    outline: none;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Mobile styling for submenus */
@media (max-width: 992px) {
    .sub-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.02);
        padding: 0 0 0 15px;
        margin: 5px 0;
        border-left: 2px solid var(--accent-color);
    }
    
    .sub-menu.toggled-on {
        display: block;
    }
    
    .menu-item-has-children:hover > .sub-menu {
        display: none;
    }
    
    .menu-item-has-children.focus > .sub-menu {
        display: block;
    }
}

/* Page Hero Section Styles */
.page-hero-section {
    position: relative;
    padding: 100px 0 60px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    background-image: url('../images/page-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.9;
    z-index: 1;
}

.page-hero-section .container {
    position: relative;
    z-index: 2;
}

.page-hero-section .page-title {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero-section .page-last-updated {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.page-content {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-content-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.entry-content {
    width: 100%;
}

.entry-content h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.entry-content h2:first-child {
    margin-top: 0;
}

.entry-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .page-hero-section {
        padding: 80px 0 40px;
    }
    
    .page-hero-section .page-title {
        font-size: 32px;
    }

    .page-content-box {
        padding: 30px 20px;
        border-radius: 6px;
    }
} 