        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #fff;
            color: #292F36;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            outline: none;
        }

        img {
            max-width: 100%;
        }

    
        header {
            padding: 20px 0;
            background-color: #FFFFFF;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 30px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-links li a {
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links li a:hover {
            color: #CDA274;
        }

        .search-icon {
            font-size: 18px;
            cursor: pointer;
        }

  
        .hero {
            background-color: #F4F0EC;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .hero-content {
            flex: 1;
            max-width: 500px;
        }

        .hero-content h1 {
            font-size: 50px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #292F36;
        }

        .hero-content p {
            color: #4D5053;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .hero-image {
            flex: 1;
            overflow: hidden;
            border-radius: 0 70px 0 0;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .btn-primary {
            background-color: #292F36;
            color: #FFFFFF;
            padding: 15px 30px;
            border-radius: 25px;
            display: inline-flex;
            align-items: center;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }

        .btn-primary i {
            margin-left: 10px;
        }

        .btn-primary:hover {
            background-color: #3E4248;
        }

     
        .services {
            padding: 80px 0;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            padding: 30px;
            background-color: #FFFFFF;
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-card h3 {
            font-size: 22px;
            margin: 20px 0;
        }

        .service-card p {
            color: #4D5053;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .read-more {
            color: #292F36;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }

        .read-more i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .read-more:hover i {
            transform: translateX(5px);
        }

       
        .stylish-living {
            padding: 80px 0;
            background-color: #F4F0EC;
        }

        .stylish-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .stylish-content h2 {
            font-size: 38px;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .stylish-content p {
            color: #4D5053;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .phone-circle {
            width: 50px;
            height: 50px;
            background-color: #FFFFFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .phone-number {
            font-weight: 500;
        }

        .stylish-image {
            overflow: hidden;
            border-radius: 50px;
        }

        .stylish-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        
        .testimonials {
            padding: 80px 0;
            background-color: #F4F0EC;
            text-align: center;
        }

        .testimonials h2 {
            font-size: 32px;
            margin-bottom: 50px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background-color: #FFFFFF;
            padding: 30px;
            border-radius: 15px;
            text-align: left;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .testimonial-header img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }

        .testimonial-info h4 {
            font-weight: 500;
            margin-bottom: 5px;
        }

        .testimonial-info p {
            color: #4D5053;
            font-size: 14px;
        }

        .testimonial-text {
            color: #4D5053;
            line-height: 1.6;
        }

        .projects {
            padding: 80px 0;
            text-align: center;
        }

        .projects h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .projects p {
            color: #4D5053;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .project-card {
            position: relative;
            overflow: hidden;
            border-radius: 25px;
        }

        .project-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .project-info {
            padding: 15px;
            text-align: left;
            background-color: #FFFFFF;
        }

        .project-info h3 {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .project-info p {
            color: #4D5053;
            margin-bottom: 0;
            font-size: 14px;
        }

        .arrow-icon {
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background-color: #F4F0EC;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }

        .arrow-icon:hover {
            background-color: #CDA274;
        }

     
        .stats {
            padding: 40px 0;
            background-color: #F4F0EC;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            text-align: center;
        }

        .stat-item h3 {
            font-size: 42px;
            color: #CDA274;
            margin-bottom: 10px;
        }

        .stat-item p {
            color: #4D5053;
            font-size: 16px;
        }

       
        .articles {
            padding: 80px 0;
            text-align: center;
        }

        .articles h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .articles p {
            color: #4D5053;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .article-card {
            background-color: #FFFFFF;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .article-image {
            height: 300px;
            width: 100%;
            object-fit: cover;
        }

        .article-content {
            padding: 20px;
            text-align: left;
        }

        .article-title {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .article-date {
            color: #4D5053;
            font-size: 14px;
            margin-top: 15px;
            display: block;
        }

        .cta {
            padding: 40px 0;
            margin-bottom: 80px;
        }

        .cta-container {
            background-color: #292F36;
            border-radius: 25px;
            padding: 50px;
            text-align: center;
            color: #FFFFFF;
        }

        .cta-container h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .cta-container p {
            color: #FFFFFF;
            opacity: 0.8;
            margin-bottom: 30px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-secondary {
            background-color: #CDA274;
            color: #FFFFFF;
            padding: 15px 30px;
            border-radius: 25px;
            display: inline-flex;
            align-items: center;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }

        .btn-secondary i {
            margin-left: 10px;
        }

        .btn-secondary:hover {
            background-color: #BF9764;
        }

        .partners {
            padding: 40px 0;
            border-top: 1px solid #E5E5E5;
            border-bottom: 1px solid #E5E5E5;
        }

        .partners-grid {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .partner-logo {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
            max-height: 40px;
            width: auto;
        }

        .partner-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }

       
        footer {
            padding: 80px 0 40px;
            background-color: #FFFFFF;
            border-top: 1px solid #E5E5E5;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 30px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 30px;
            margin-right: 10px;
        }

        .footer-brand p {
            color: #4D5053;
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #F4F0EC;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }

        .social-link:hover {
            background-color: #CDA274;
            color: #FFFFFF;
        }

        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links li a {
            color: #4D5053;
            transition: color 0.3s ease;
        }

        .footer-links li a:hover {
            color: #CDA274;
        }

        .contact-details p {
            color: #4D5053;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            color: #4D5053;
            font-size: 14px;
            border-top: 1px solid #E5E5E5;
            margin-top: 40px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .services-grid,
            .testimonials-grid,
            .articles-grid,
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .stylish-container,
            .projects-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .services-grid,
            .testimonials-grid,
            .articles-grid,
            .footer-container {
                grid-template-columns: 1fr;
            }

            .hero-container {
                flex-direction: column;
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-icon {
                display: block;
            }
        }