* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary-color: #e63946;
            --secondary-color: #1d3557;
            --accent-color: #457b9d;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --success-color: #2a9d8f;
            --warning-color: #f4a261;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            background-color: #f5f7fa;
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #c9184a;
        }

        /* Header Styles */
        header {
            background: #fff;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo img {
            height: 128px;
            width: 118px;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .contact-info a {
            color: var(--dark-color);
            font-size: 1.3rem;
            transition: var(--transition);
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-info a span {
            font-size: 1rem;
            font-weight: 500;
        }
        .contact-info a{
            text-decoration: none;
        }

        .contact-info a:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        .contact-info a::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: -35px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--dark-color);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .contact-info a:hover::after {
            opacity: 1;
        }

        /* Process Section */
        .process {
            padding: 6rem 5%;
            background: white;
            position: relative;
            margin-top: 2rem;
        }

        .process::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--success-color));
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.3rem;
            color: #666;
            max-width: 700px;
            margin: 2rem auto 0;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            z-index: 0;
        }

        .step {
            flex: 1;
            text-align: center;
            padding: 2rem 1rem;
            background: white;
            border-radius: 20px;
            transition: var(--transition);
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .step:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            transition: var(--transition);
            position: relative;
            box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
        }

        .step:hover .step-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .step h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        .step p {
            color: #666;
            line-height: 1.6;
        }

        /* Benefits Section */
        .benefits {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefit-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            min-width: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .benefit-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        .benefit-content p {
            color: #666;
            line-height: 1.6;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 6rem 5%;
            background: white;
        }

        .testimonials-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            flex: 1;
            min-width: 350px;
            max-width: 380px;
            background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            color: rgba(230, 57, 70, 0.1);
            font-family: Georgia, serif;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 2rem;
            color: #555;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-color);
        }

        .author-info h4 {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }

        .author-info p {
            color: #666;
            font-size: 0.9rem;
        }

        .rating {
            color: #ffc107;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        /* FAQ Section */
        .faq {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
        }

        .faq .section-header h2,
        .faq .section-header p {
            color: white;
        }

        .faq .section-header h2::after {
            background: white;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--secondary-color);
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: rgba(230, 57, 70, 0.05);
        }

        .faq-question i {
            transition: var(--transition);
            color: var(--primary-color);
        }

        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
            color: #666;
            line-height: 1.6;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            padding: 0 2rem 2rem;
            max-height: 500px;
        }

        /* CTA Section */
        .cta {
            padding: 6rem 5%;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        .cta h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .cta p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .btn-outline:hover {
            background: white;
            color: var(--secondary-color);
        }

        /* Footer */
        footer {
            background: #111;
            color: white;
            padding: 4rem 5% 2rem;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            gap: 3rem;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
        }

        .footer-section p {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 1rem;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-section ul li a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .footer-section ul li a i {
            font-size: 0.9rem;
            opacity: 0;
            transition: var(--transition);
        }

        .footer-section ul li a:hover i {
            opacity: 1;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #ccc;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .process-steps {
                flex-direction: column;
            }

            .process-steps::before {
                display: none;
            }

            .footer-content {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
            }

            .contact-info {
                flex-wrap: wrap;
                justify-content: center;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .cta h2 {
                font-size: 2rem;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }.car-services {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 40px auto;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
            min-height: 500px;
        }
        
        .service-section {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            position: relative;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .buy-section {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/img1.jpg');
        }
        
        .sell-section {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/img2.jpeg');
        }
        
        .service-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .service-description {
            font-size: 18px;
            line-height: 1.5;
            margin-bottom: 25px;
            color: #fff;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        .service-highlight {
            font-weight: 600;
            color: #fff;
        }
        
        .service-button {
            background-color: #ff4d6d;
            color: white;
            border: none;
            padding: 14px 35px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .service-button:hover {
            background-color: #ff3355;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 77, 109, 0.4);
        }
        
        .service-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 28px;
            color: #ff4d6d;
            background-color: rgba(255, 255, 255, 0.9);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        
        .content-wrapper {
            max-width: 80%;
        }
        
        @media (max-width: 768px) {
            .car-services {
                flex-direction: column;
            }
            
            .service-section {
                padding: 30px 20px;
                min-height: 400px;
            }
            
            .service-title {
                font-size: 26px;
            }
            
            .service-description {
                font-size: 16px;
            }
            
            .content-wrapper {
                max-width: 100%;
                margin-top: 168px;
            }
        }

        /*Contact section*/
        .contact-container {
            max-width: 1200px;
            margin: 50px auto;
            display: flex;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            overflow: hidden;
            background-color: #fff;
        }
        
        .contact-left {
            flex: 1;
            position: relative;
            min-height: 600px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://picsum.photos/seed/contactus/800/600.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px 40px;
            color: #fff;
        }
        
        .contact-heading {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .contact-subheading {
            font-size: 20px;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .contact-info {
            margin-top: 28px;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .info-item i {
            font-size: 20px;
            margin-right: 15px;
            color: #ff4d6d;
            background-color: rgba(255, 255, 255, 0.9);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-right {
            flex: 1;
            padding: 60px 40px;
            background-color: #fff;
        }
        
        .form-title {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }
        
        .form-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #444;
            font-size: 14px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff4d6d;
            box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        .submit-btn {
            background-color: #ff4d6d;
            color: white;
            border: none;
            padding: 14px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
        }
        
        .submit-btn:hover {
            background-color: #ff3355;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 77, 109, 0.3);
        }
        
        .social-links {
            margin-top: 40px;
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .social-link:hover {
            background-color: #ff4d6d;
            transform: translateY(-3px);
            border-color: #ff4d6d;
        }
        
        @media (max-width: 768px) {
            .contact-container {
                flex-direction: column;
            }
            .contact-info{
                margin-top: -38px;
                padding-bottom: 8px;
                gap: 0.5rem;
            }
            
            .contact-left,
            .contact-right {
                padding: 40px 30px;
            }
            
            .contact-heading {
                font-size: 32px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .contact-left {
                min-height: 400px;
            }
        }

        /*contact section*/
         .cf-main-wrapper {
            max-width: 1200px;
            margin: 50px auto;
            display: flex;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            overflow: hidden;
            background-color: #fff;
        }
        
        .cf-image-section {
            flex: 1;
            position: relative;
            min-height: 600px;
            background-image: url('img/img.jpeg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px 40px;
            color: #fff;
        }
        
        .cf-main-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .cf-main-description {
            font-size: 20px;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cf-contact-details {
            margin-top: 40px;
        }
        
        .cf-detail-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .cf-detail-item i {
            font-size: 20px;
            margin-right: 15px;
            color: #ff4d6d;
            background-color: rgba(255, 255, 255, 0.9);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .cf-form-section {
            flex: 1;
            padding: 60px 40px;
            background-color: #fff;
        }
        
        .cf-form-header {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }
        
        .cf-form-subheader {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }
        
        .cf-input-group {
            margin-bottom: 25px;
        }
        
        .cf-input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #444;
            font-size: 14px;
        }
        
        .cf-input-group input,
        .cf-input-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        
        .cf-input-group input:focus,
        .cf-input-group textarea:focus {
            outline: none;
            border-color: #ff4d6d;
            box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.1);
        }
        
        .cf-input-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .cf-input-row {
            display: flex;
            gap: 20px;
        }
        
        .cf-input-row .cf-input-group {
            flex: 1;
        }
        
        .cf-submit-button {
            background-color: #ff4d6d;
            color: white;
            border: none;
            padding: 14px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
        }
        
        .cf-submit-button:hover {
            background-color: #ff3355;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 77, 109, 0.3);
        }
        
        .cf-social-container {
            margin-top: 40px;
            display: flex;
            gap: 15px;
        }
        
        .cf-social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .cf-social-icon:hover {
            background-color: #ff4d6d;
            transform: translateY(-3px);
            border-color: #ff4d6d;
        }
        
        @media (max-width: 768px) {
            .cf-main-wrapper {
                flex-direction: column;
            }
            
            .cf-image-section,
            .cf-form-section {
                padding: 40px 30px;
            }
            
            .cf-main-title {
                font-size: 32px;
            }
            
            .cf-input-row {
                flex-direction: column;
                gap: 0;
            }
            
            .cf-image-section {
                min-height: 400px;
            }
        }