 /* Reset and base styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #2563eb;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #2563eb;
}

/* Hero section */
.hero {
    background-color: #f0f5ff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
}

.hero p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #475569;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: white;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.btn-secondary:hover {
    background-color: #f0f5ff;
}

/* Expertise section */
.expertise {
    padding: 80px 0;
    text-align: center;
}

.expertise h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1e293b;
}

.expertise p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #475569;
}

.expertise-content {
    display: flex;
    align-items: center;
    margin-top: 50px;
    text-align: left;
}

.expertise-text {
    flex: 1;
    padding-right: 30px;
}

.expertise-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1e293b;
}

.expertise-text p {
    margin: 15px 0;
    text-align: left;
}

.expertise-image {
    flex: 1;
}

.expertise-image img {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Services section */
.services {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.services h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1e293b;
}

.services p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #475569;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 30px;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1e293b;
}

.service-card p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 0;
    text-align: left;
}

/* Insights section */
.insights {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.insights h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1e293b;
}

.insights p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #475569;
}

.insights-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.insight-card {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.insight-image {
    height: 200px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.insight-card:hover .insight-image img {
    transform: scale(1.05);
}

.insight-content {
    padding: 20px;
    text-align: left;
}

.insight-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1e293b;
}

.insight-content p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 15px;
    text-align: left;
}

.read-more {
    color: #2563eb;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    text-decoration: underline;
}

.read-more svg {
    margin-left: 5px;
    width: 16px;
    height: 16px;
}

/* Gallery section */
.gallery {
    padding: 80px 0;
    text-align: center;
    background-color: white;
}

.gallery h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1e293b;
}

.gallery p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #475569;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.property-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.property-image {
    height: 180px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-content {
    padding: 15px;
    text-align: left;
}

.property-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1e293b;
}

.property-location {
    font-size: 14px;
    color: #64748b;
}

/* Contact section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    color: white;
}

.contact h2 {
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
    color: white;
}

.contact p {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.check-icon {
    color: #10b981;
    margin-right: 10px;
}

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    margin-right: 10px;
}

/* Testimonials section */
.testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.testimonials h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1e293b;
}

.testimonials p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #475569;
}

.testimonials-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1e293b;
}

.testimonial-location {
    font-size: 14px;
    color: #64748b;
}

.testimonial-text {
    font-style: italic;
    color: #475569;
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-info {
    flex: 1;
}

.footer-info h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1e293b;
}

.footer-contact {
    margin-top: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #475569;
}

.footer-contact-icon {
    margin-right: 10px;
    color: #2563eb;
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-links-column {
    margin-left: 60px;
}

.footer-links-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1e293b;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: #475569;
    transition: color 0.3s;
}

.footer-links-list a:hover {
    color: #2563eb;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

/* Responsive styles */
@media (max-width: 991px) {
    .expertise-content {
        flex-direction: column;
    }

    .expertise-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .services-grid, .insights-grid, .testimonials-grid {
        flex-direction: column;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-container {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-links-column {
        margin-left: 0;
        margin-right: 60px;
    }
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0 10px 10px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .btn-group {
        flex-direction: column;
        gap: 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}