        
        * {
            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;
        }
        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
        }

        header {
            padding: 20px 0;
            background-color: #fff;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 30px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            font-size: 16px;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #CDA274;
        }

        .search-icon {
            font-size: 18px;
            cursor: pointer;
        }

        
        .hero-banner {
            background-image: url('/img/Main\ Image\ About\ Place.png');
            background-size: cover;
            background-position: center;
            height: 200px;
            position: relative;
        }

        .about-us-overlay {
            position: absolute;
            top: 80%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #fff;
            padding: 30px 70px;
            border-radius: 20px;
            text-align: center;
        }

        .about-us-overlay h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .breadcrumb {
            font-size: 14px;
        }

       
        .quote-section {
            padding: 100px 0;
            text-align: center;
        }

        .quote-container {
            max-width: 700px;
            margin: 0 auto;
            border: 1px solid #F4F0EC;
            border-radius: 50px;
            padding: 40px;
            position: relative;
        }

        .quote-mark {
            font-size: 60px;
            color: #292F36;
            margin-bottom: 20px;
        }

        .quote-text {
            font-size: 24px;
            font-style: italic;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .quote-author {
            font-size: 18px;
            color: #4D5053;
        }

        
        .what-we-do {
            padding: 80px 0;
            background-color: #fff;
        }

        .what-we-do-container {
            display: flex;
            gap: 40px;
        }

        .what-we-do-text {
            flex: 1;
        }

        .what-we-do-text h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .what-we-do-text p {
            color: #4D5053;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            padding: 15px 25px;
            background-color: #292F36;
            color: #fff;
            border-radius: 20px;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: #394049;
        }

        .btn-arrow {
            margin-left: 10px;
        }

        .what-we-do-image {
            flex: 1;
        }

        .image-card {
            width: 100%;
            height: 300px;
            background-size: cover;
            background-position: center;
            border-radius: 20px;
            overflow: hidden;
        }

        .before-image {
            background-image: url('/img/Main\ Image\ About\ 2.png');
            height: 370px;
            border-radius: 5px;
            width: 650px;
        }

        .after-image {
            background-image: url('/img/Main\ Image\ About\ 3.png');
           
            height: 370px;
            border-radius: 5px;
            width: 650px;
        }

       
        .end-result {
            padding: 80px 0;
            background-color: #fff;
        }

        .end-result-container {
            display: flex;
            gap: 40px;
        }

        .end-result-image {
            flex: 1;
        }

        .end-result-text {
            flex: 1;
        }

        .end-result-text h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .end-result-text p {
            color: #4D5053;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        
        .contact-section {
            padding: 80px 0;
            background-color: #fff;
            text-align: center;
        }

        .contact-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-heading {
            margin-bottom: 40px;
        }

        .contact-heading h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .contact-form {
            text-align: left;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            flex: 1;
        }

        .form-control {
            width: 100%;
            padding: 15px 0;
            border: none;
            border-bottom: 1px solid #4D5053;
            font-size: 16px;
            outline: none;
        }

        .form-control:focus {
            border-bottom-color: #CDA274;
        }

        .form-control::placeholder {
            color: #4D5053;
        }

        textarea.form-control {
            resize: none;
            height: 100px;
        }

        .submit-btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: #292F36;
            color: #fff;
            border-radius: 20px;
            font-weight: 600;
            margin-top: 20px;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .submit-btn:hover {
            background-color: #394049;
        }

       
        footer {
            padding: 80px 0 40px;
            background-color: #fff;
        }

        .footer-container {
            display: flex;
            justify-content: space-between;
        }

        .footer-col {
            flex: 1;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-text {
            color: #4D5053;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .social-icons {
            display: flex;
            gap: 20px;
        }

        .social-icons a {
            color: #292F36;
            font-size: 18px;
        }

        .footer-title {
            font-size: 20px;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #4D5053;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #CDA274;
        }

        .contact-info {
            margin-bottom: 15px;
            color: #4D5053;
        }

        .copyright {
            margin-top: 60px;
            text-align: center;
            color: #4D5053;
            font-size: 14px;
        }

        
        .testimonials {
            padding: 80px 0;
            background-color: #f4f0ec;
        }

        .testimonials-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonials-heading h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .testimonials-grid {
            display: flex;
            justify-content: space-between;
            gap: 30px;
        }

        .testimonial-card {
            flex: 1;
            display: flex;
            flex-direction: column;
            background-color: #fff;
            border-radius: 20px;
            overflow: hidden;
            height: 350px;
        }

        .testimonial-image {
            width: 270px;
            height: 350px;
            object-fit: cover;
        }

        .testimonial-content {
            padding: 20px;
            text-align: center;
        }

        .testimonial-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            margin-top: 20px;
        }

        .testimonial-position {
            color: #4D5053;
            margin-bottom: 15px;
        }

        .testimonial-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 55px;
        }

        .testimonial-contact {
            margin-top: 110px;
        }

        .testimonial-phone, .testimonial-email {
            color: #4D5053;
            font-size: 14px;
            margin-bottom: 5px;
        }