/* Stoneybroke Property Solutions Stylesheet */
    
    :root {
        --primary-purple: #6B4BA0;
        --primary-teal: #2B8A8A;
        --accent-purple: #5B3A8F;
        --light-gray: #f5f5f5;
        --dark-gray: #333;
        --white: #ffffff;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
        color: var(--dark-gray);
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Navigation */
    .navbar {
        background-color: var(--primary-purple);
        padding: 1rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-brand {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .nav-logo {
        height: 60px;
        width: auto;
    }
    
    .brand-name {
        color: var(--white);
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
    }
    
    .nav-menu a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        transition: opacity 0.3s;
    }
    
    .nav-menu a:hover {
        opacity: 0.8;
    }
    
    /* Hero Section */
    .hero {
        background: linear-gradient(135deg, var(--primary-teal) 0%, #3B9A9A 100%);
        color: var(--white);
        padding: 6rem 0;
        text-align: center;
    }
    
    .hero-logo {
        width: 400px;
        height: auto;
        margin-bottom: 2rem;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        animation: fadeIn 1s ease-in;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .tagline {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        font-weight: 300;
    }
    
    .cta-button {
        display: inline-block;
        background-color: var(--primary-purple);
        color: var(--white);
        padding: 1rem 2.5rem;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: transform 0.3s, box-shadow 0.3s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
    
    /* Services Section */
    .services {
        padding: 5rem 0;
        background-color: var(--white);
    }
    
    .services h2 {
        text-align: center;
        font-size: 2.5rem;
        color: var(--primary-purple);
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: var(--dark-gray);
        margin-bottom: 3rem;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .service-card {
        background: var(--white);
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        border-top: 4px solid var(--primary-purple);
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .service-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
        color: var(--primary-purple);
        margin-bottom: 1rem;
    }
    
    .service-card p {
        color: var(--dark-gray);
        line-height: 1.8;
    }
    
    /* About Section */
    .about {
        padding: 5rem 0;
        background-color: var(--light-gray);
    }
    
    .about h2 {
        text-align: center;
        font-size: 2.5rem;
        color: var(--primary-purple);
        margin-bottom: 2rem;
    }
    
    .about-content {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }
    
    .about-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: var(--dark-gray);
    }
    
    /* Contact Section */
    .contact {
        padding: 5rem 0;
        background: linear-gradient(135deg, var(--primary-teal) 0%, #3B9A9A 100%);
        color: var(--white);
    }
    
    .contact h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .contact .section-subtitle {
        color: var(--white);
    }
    
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item p {
        font-size: 1.1rem;
    }
    
    .contact-item a {
        color: var(--white);
        text-decoration: none;
        transition: opacity 0.3s;
    }
    
    .contact-item a:hover {
        opacity: 0.8;
    }
    
    .contact-form {
        background: var(--white);
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 1rem;
        margin-bottom: 1rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: var(--primary-purple);
    }
    
    .submit-button {
        background-color: var(--primary-purple);
        color: var(--white);
        padding: 1rem 2rem;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        width: 100%;
        font-size: 1.1rem;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .submit-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
    
    /* Footer */
    footer {
        background-color: var(--dark-gray);
        color: var(--white);
        text-align: center;
        padding: 2rem 0;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .nav-menu {
            flex-direction: column;
            gap: 1rem;
        }
    
        .hero h1 {
            font-size: 2rem;
        }
    
        .hero-logo {
            width: 250px;
        }
    
        .tagline {
            font-size: 1.2rem;
        }
    
        .services-grid {
            grid-template-columns: 1fr;
        }
    
        .contact-wrapper {
            grid-template-columns: 1fr;
        }
    
        .brand-name {
            font-size: 1.2rem;
        }
    }
    
    @media (max-width: 480px) {
        .hero h1 {
            font-size: 1.5rem;
        }
    
        .hero-logo {
            width: 200px;
        }
    
        .nav-logo {
            height: 40px;
        }
    
        .brand-name {
            font-size: 1rem;
        }
    }