        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            width: 100%;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: #ff4500;
            flex: 0 0 auto;
        }

        .logo::before {
            content: '';
            width: 32px;
            height: 32px;
            background: linear-gradient(45deg, #ff4500, #ff6b35);
            border-radius: 50%;
            margin-right: 10px;
            display: inline-block;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            flex: 0 0 auto;
            margin-left: auto;
            margin-right: 50px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 5px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: #ff4500;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: #ff4500;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .dropdown-arrow {
            transition: transform 0.3s ease;
            margin-left: 8px;
            display: inline-block;
            vertical-align: middle;
            font-size: 10px !important;
        }

        .has-dropdown:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        .nav-link {
            display: flex;
            align-items: center;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            padding: 15px 0;
            min-width: 250px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            margin-top: 10px;
        }

        .has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 400;
        }

        .dropdown-item:hover {
            background: #f8f9fa;
            color: #ff4500;
            padding-left: 25px;
        }

        .dropdown-item::after {
            display: none;
        }

        /* Special handling for last dropdown to prevent overflow */
        .nav-item:last-child .dropdown-menu {
            right: 0;
            left: auto;
            transform: translateY(10px);
        }

        .nav-item:last-child:hover .dropdown-menu {
            transform: translateY(0);
        }

        /* Hero Section */
        .hero {
            min-height: 90vh;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #333;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="75" cy="25" r="0.5" fill="rgba(0,0,0,0.01)"/><circle cx="50" cy="75" r="1.5" fill="rgba(0,0,0,0.015)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
            opacity: 0.3;
        }

        .hero-content {
            width: 100%;
            z-index: 2;
            position: relative;
            animation: fadeInUp 1s ease;
            padding: 0 40px;
        }

        .hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, #667eea, #764ba2);
            backdrop-filter: blur(10px);
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            margin-bottom: 30px;
            animation: pulse 2s infinite;
            color: white;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .hero-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: none;
            color: #222;
            font-family: 'Georgia', 'Times New Roman', serif;
            letter-spacing: -1px;
            line-height: 1.1;
            width: 100%;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            margin-bottom: 40px;
            opacity: 0.7;
            font-weight: 300;
            color: #666;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff4500, #ff6b35);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(255, 69, 0, 0.4);
        }

        /* Photographers Gallery */
        .photographers-section {
            padding: 0px 0px 50px;
            background: #f8f9fa;
            overflow: hidden;
            margin-top: -50px;
            width: 100%;
        }

        .photographers-container {
            width: 100%;
            margin: 0;
            position: relative;
        }

        .photographers-slider {
            display: flex;
            animation: slideLeft 30s linear infinite;
            gap: 20px;
        }

        .photographers-slider:hover {
            animation-play-state: paused;
        }

        .photographers-grid {
            display: flex;
            gap: 20px;
            flex-shrink: 0;
        }

        .photographer-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 300px;
            width: 250px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            flex-shrink: 0;
        }

        .photographer-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .photographer-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .photographer-card:hover .photographer-image {
            transform: scale(1.1);
        }

        .photographer-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 30px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .photographer-card:hover .photographer-overlay {
            transform: translateY(0);
        }

        .photographer-overlay h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: white;
        }

        .photographer-overlay p {
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.9);
        }

        .photographer-address {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .photographer-address i {
            font-size: 0.7rem;
        }

        .photographers-error {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 300px;
            width: 100%;
        }

        .error-content {
            text-align: center;
            color: #666;
        }

        .error-content i {
            font-size: 3rem;
            color: #ff6b35;
            margin-bottom: 20px;
        }

        .error-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #333;
        }

        .error-content p {
            font-size: 1rem;
            color: #666;
        }

        /* Assurances Section */
        .assurances-section {
            padding: 80px 40px;
            background: #ffffff;
            width: 100%;
        }

        .assurances-container {
            width: 100%;
            margin: 0;
        }

        .assurances-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 60px;
        }

        .assurances-text {
            flex: 1;
            max-width: 700px;
            padding-right: 60px;
        }

        .assurances-label {
            color: #667eea;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .assurances-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: #222;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .assurances-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
        }

        .assurances-navigation {
            display: flex;
            gap: 15px;
            flex-shrink: 0;
        }

        .nav-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid #e0e0e0;
            background: white;
            color: #666;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-arrow:hover {
            border-color: #667eea;
            color: #667eea;
            transform: scale(1.1);
        }

        .nav-arrow:active {
            transform: scale(0.95);
        }

        .assurances-slider-container {
            overflow: hidden;
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }

        .assurances-slider {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
            padding: 0 20px;
        }

        .assurance-card {
            flex: 0 0 320px;
            background: #ffffff;
            border: 1px solid #f0f0f0;
            border-radius: 20px;
            padding: 35px 30px;
            text-align: left;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
        }

        .assurance-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
            border-color: #667eea;
        }

        .assurance-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
        }

        .assurance-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 18px;
            line-height: 1.3;
        }

        .assurance-card p {
            color: #666;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Our Services Section */
        .services-section {
            padding: 120px 40px;
            background: #f8f9fa;
            text-align: center;
            width: 100%;
        }

        .services-container {
            width: 100%;
            margin: 0;
            max-width: 1400px;
            margin: 0 auto;
        }

        .services-header {
            width: 100%;
            margin: 0;
            max-width: 800px;
            margin: 0 auto;
        }

        .services-label {
            color: #667eea;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .services-title {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 800;
            color: #222;
            font-family: 'Georgia', 'Times New Roman', serif;
            letter-spacing: -2px;
            line-height: 1.1;
            margin-bottom: 60px;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }


        .service-image {
            position: relative;
            height: 250px;
            overflow: hidden;
            border-radius: 20px 20px 0 0;
        }

        .before-after-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .before-image, .after-image {
            position: absolute;
            top: 0;
            width: 100%;
            height: 100%;
        }

        .before-image {
            left: 0;
            clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
        }

        .after-image {
            right: 0;
            clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
        }

        .before-image img, .after-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        .before-after-divider {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: white;
            z-index: 2;
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
            transition: opacity 0.2s ease;
        }

        .service-card.dragging .before-after-divider,
        .service-card.used .before-after-divider {
            opacity: 0;
        }

        .before-after-slider {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            cursor: grab;
            z-index: 3;
            user-select: none;
        }

        .before-after-slider:active {
            cursor: grabbing;
        }

        .slider-button {
            width: 50px;
            height: 50px;
            background: rgba(0,0,0,0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 3px solid white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }


        /* Free Trial Section */
        .free-trial-section {
            background: linear-gradient(135deg, #ff6b35, #ff8a65);
            color: white;
            padding: 80px 40px;
            width: 100%;
        }

        .free-trial-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .free-trial-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .free-trial-text {
            max-width: 100%;
        }

        .free-trial-subtitle {
            font-size: 1.1rem;
            margin-bottom: 20px;
            opacity: 0.9;
            font-weight: 500;
        }

        .free-trial-title {
            font-size: clamp(3rem, 5vw, 4.5rem);
            font-weight: 800;
            margin-bottom: 40px;
            line-height: 1.1;
            font-family: 'Georgia', 'Times New Roman', serif;
            letter-spacing: -2px;
        }

        .free-trial-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .free-trial-form-section {
            display: flex;
            justify-content: center;
        }

        .trial-form {
            background: white;
            border-radius: 20px;
            padding: 40px;
            width: 100%;
            max-width: 400px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .upload-section {
            text-align: center;
            padding: 30px;
            border: 2px dashed #ddd;
            border-radius: 15px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .upload-section:hover {
            border-color: #ff4500;
            background: #fafafa;
        }

        .upload-icon {
            margin-bottom: 15px;
        }

        .upload-text {
            color: #666;
            font-size: 0.95rem;
            margin: 0;
        }

        .trial-form-fields {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            background: white;
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: #ff4500;
        }

        .form-textarea {
            min-height: 100px;
            resize: vertical;
        }

        .form-submit-btn {
            background: #222;
            color: white;
            padding: 16px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .form-submit-btn:hover {
            background: #333;
            transform: translateY(-2px);
        }

        /* Why Choose Section */
        .why-choose-section {
            background: #ffffff;
            padding: 100px 40px;
            width: 100%;
        }

        .why-choose-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-choose-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .why-choose-text {
            max-width: 100%;
        }

        .why-choose-subtitle {
            color: #667eea;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .why-choose-title {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 700;
            color: #222;
            margin-bottom: 50px;
            line-height: 1.2;
        }

        .why-choose-features {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .why-feature-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .why-feature-icon {
            width: 50px;
            height: 50px;
            background: #f0f4ff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 5px;
        }

        .why-feature-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #222;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .why-feature-content p {
            color: #666;
            line-height: 1.7;
            font-size: 1rem;
        }

        .why-choose-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .why-choose-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        /* Professional Retouchers Section */
        .professional-retouchers-section {
            background: #f8f9fa;
            padding: 100px 40px;
            width: 100%;
        }

        .retouchers-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .retouchers-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .retouchers-subtitle {
            color: #667eea;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .retouchers-title {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 700;
            color: #222;
            margin-bottom: 0;
            line-height: 1.2;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .retouchers-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .retoucher-item {
            text-align: center;
        }

        .retoucher-badge {
            background: #ffe6e6;
            color: #d32f2f;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 20px;
            display: inline-block;
        }

        .retoucher-item:nth-child(2) .retoucher-badge {
            background: #e8f0ff;
            color: #1976d2;
        }

        .retoucher-item:nth-child(3) .retoucher-badge {
            background: #f3e5f5;
            color: #7b1fa2;
        }

        .retoucher-description {
            color: #666;
            line-height: 1.7;
            font-size: 1rem;
            margin: 0;
        }

        /* Operational Approach Section */
        .operational-approach-section {
            background: #ffffff;
            padding: 100px 40px;
            width: 100%;
        }

        .approach-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .approach-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .approach-subtitle {
            color: #667eea;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .approach-title {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 700;
            color: #222;
            margin-bottom: 0;
            line-height: 1.2;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .approach-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
        }

        .approach-item {
            text-align: center;
            max-width: 350px;
            margin: 0 auto;
        }

        .approach-icon {
            width: 80px;
            height: 80px;
            background: #fff5f0;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            transition: all 0.3s ease;
        }

        .approach-icon:hover {
            background: #ff6b35;
            transform: translateY(-5px);
        }

        .approach-icon:hover svg {
            stroke: white;
        }

        .approach-description {
            color: #666;
            line-height: 1.7;
            font-size: 1rem;
            margin: 0;
        }

        /* FAQs Section */
        .faqs-section {
            background: #f8f9fa;
            padding: 100px 40px;
            width: 100%;
        }

        .faqs-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .faqs-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: flex-start;
        }

        .faqs-text {
            max-width: 100%;
        }

        .faqs-subtitle {
            color: #667eea;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .faqs-title {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 700;
            color: #222;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .faqs-description {
            color: #666;
            line-height: 1.7;
            font-size: 1rem;
            margin: 0;
        }

        .faqs-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .faq-question {
            padding: 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #222;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #f8f9fa;
        }

        .faq-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #ff6b35;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: normal;
            transition: all 0.3s ease;
            flex-shrink: 0;
            margin-left: 20px;
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer p {
            color: #666;
            line-height: 1.7;
            margin: 0;
            padding-bottom: 25px;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* Footer */
        .footer {
            background: #ffffff;
            padding: 80px 40px 40px;
            border-top: 1px solid #e0e0e0;
        }

        .footer-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
        }

        .footer-column h3.footer-title {
            color: #999;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 20px;
            margin-top: 30px;
        }

        .footer-column:first-child h3.footer-title {
            margin-top: 0;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #666;
            text-decoration: underline;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ff6b35;
        }

        .footer-text {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 0 30px 0;
        }

        .footer-text a {
            color: #666;
            text-decoration: underline;
            transition: color 0.3s ease;
        }

        .footer-text a:hover {
            color: #ff6b35;
        }

        .payment-methods {
            margin-top: 40px;
        }

        .payment-label {
            color: #999;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 15px;
            font-style: italic;
        }

        .payment-icons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .payment-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 30px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 5px 8px;
            transition: all 0.3s ease;
        }

        .payment-icon:hover {
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .payment-icon.paypal {
            width: 50px;
        }

        .payment-icon.mastercard {
            width: 40px;
        }

        .payment-icon.visa {
            width: 45px;
        }

        /* CTA Section */
        .cta-section {
            background: #ffffff;
            padding: 80px 40px 0;
            width: 100%;
        }

        .cta-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .cta-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 60px;
        }

        .cta-text {
            max-width: 100%;
            text-align: left;
        }

        .cta-button-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

        .cta-button-section .cta-description {
            margin-bottom: 35px;
        }

        .cta-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: #222;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .cta-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        .cta-contact-btn {
            background: #222;
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-contact-btn:hover {
            background: #333;
            transform: translateY(-2px);
        }

        .cta-upload {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .upload-area {
            background: white;
            border: 2px dashed #ddd;
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            width: 100%;
            max-width: 400px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .upload-icon {
            /* Just the icon, no margin needed */
        }

        .cta-footer {
            background: linear-gradient(135deg, #ff4500, #ff6b35);
            color: white;
            text-align: center;
            padding: 40px 20px;
            margin: 0 -40px;
        }

        .cta-footer-title {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 700;
            margin: 0;
        }

        .service-content {
            padding: 15px 20px 20px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            flex: 1;
            border-radius: 0 0 20px 20px;
        }

        .service-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 5px;
        }

        .service-content h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #222;
            margin: 0;
            line-height: 1.3;
            flex: 1;
        }

        .service-price {
            font-size: 1rem;
            color: #666;
            margin: 0;
            font-weight: 500;
            text-align: left;
        }

        .service-link {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

        .service-link:hover {
            color: #5a6fd8;
        }

        .service-link::after {
            content: '→';
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .service-link:hover::after {
            transform: translateX(3px);
        }

        /* Chat Widget */
        .chat-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .chat-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff4500, #ff6b35);
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(255, 69, 0, 0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chat-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(255, 69, 0, 0.4);
        }

        .chat-menu {
            position: absolute;
            bottom: 80px;
            right: 0;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            padding: 20px;
            min-width: 280px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .chat-menu.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .chat-option {
            display: block;
            padding: 12px 16px;
            margin: 5px 0;
            background: #f8f9fa;
            color: #333;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .chat-option:hover {
            background: #ff4500;
            color: white;
            transform: translateX(5px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes slideLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .nav-container {
                padding: 0 20px;
            }
            
            .hero-content {
                padding: 0 20px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .photographers-grid {
                gap: 15px;
            }
            
            .photographer-card {
                width: 220px;
            }
            
            .chat-menu {
                right: -100px;
                min-width: 250px;
            }

            .assurances-section {
                padding: 80px 20px;
            }

            .assurances-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
            }

            .assurances-text {
                max-width: 100%;
            }

            .assurances-navigation {
                align-self: flex-end;
            }

            .assurance-card {
                flex: 0 0 260px;
                padding: 25px 20px;
            }

            .assurances-title {
                font-size: 2rem;
            }

            .services-section {
                padding: 80px 20px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-card {
                max-width: 400px;
                margin: 0 auto;
            }

            .service-content {
                padding: 20px 25px 25px;
            }

            .cta-section {
                padding: 80px 20px 0;
            }

            .cta-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
                align-items: center;
            }

            .cta-text {
                text-align: center;
            }

            .cta-button-section {
                align-items: center;
                text-align: center;
            }

            .cta-button-section .cta-description {
                max-width: 100%;
                margin-bottom: 35px;
            }

            .cta-footer {
                margin: 0 -20px;
            }

            .free-trial-section {
                padding: 60px 20px;
            }

            .free-trial-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            .trial-form {
                max-width: 100%;
                padding: 30px;
            }

            .upload-section {
                padding: 25px;
            }

            .why-choose-section {
                padding: 80px 20px;
            }

            .why-choose-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            .why-feature-item {
                text-align: left;
            }

            .why-choose-image img {
                max-width: 100%;
            }

            .professional-retouchers-section {
                padding: 80px 20px;
            }

            .retouchers-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .retoucher-item {
                text-align: center;
            }

            .operational-approach-section {
                padding: 80px 20px;
            }

            .approach-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .faqs-section {
                padding: 80px 20px;
            }

            .faqs-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .faq-question {
                padding: 20px;
                font-size: 1rem;
            }

            .faq-icon {
                margin-left: 15px;
            }

            .footer {
                padding: 60px 20px 30px;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .footer-column h3.footer-title {
                margin-top: 25px;
            }

            .footer-column:first-child h3.footer-title,
            .footer-column:nth-child(2) h3.footer-title {
                margin-top: 0;
            }

            .payment-icons {
                flex-wrap: wrap;
            }

            .free-trial-section {
                padding: 60px 20px;
            }

            .free-trial-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            .trial-form {
                max-width: 100%;
                padding: 30px;
            }

            .upload-section {
                padding: 25px;
            }

            .upload-area {
                padding: 40px 30px;
            }

            .cta-footer {
                margin: 0 -20px;
            }
        }

        /* Image Upload Handler Styles */
        .upload-section {
            position: relative;
            transition: all 0.3s ease;
        }

        .upload-section.drag-over {
            background-color: rgba(102, 126, 234, 0.1);
            border-color: #667eea;
            transform: scale(1.02);
        }

        .image-preview {
            margin-top: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            border: 2px dashed #dee2e6;
        }

        .preview-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .preview-image {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid #e9ecef;
        }

        .preview-info {
            flex: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .preview-name {
            font-size: 14px;
            color: #495057;
            font-weight: 500;
        }

        .preview-remove {
            background: #dc3545;
            color: white;
            border: none;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            cursor: pointer;
            font-size: 16px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .preview-remove:hover {
            background: #c82333;
        }

        .form-alert {
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid;
        }

        .form-alert-success {
            background-color: #d4edda;
            border-color: #c3e6cb;
            color: #155724;
        }

        .form-alert-error {
            background-color: #f8d7da;
            border-color: #f5c6cb;
            color: #721c24;
        }

        .alert-content {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .alert-icon {
            font-weight: bold;
            font-size: 16px;
        }

        .alert-message {
            flex: 1;
        }

        .alert-close {
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            color: inherit;
            opacity: 0.7;
        }

        .alert-close:hover {
            opacity: 1;
        }

        .form-submit-btn.loading {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .form-submit-btn.loading::after {
            content: '';
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 1s linear infinite;
            margin-left: 8px;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Mobile responsive for upload */
        @media (max-width: 768px) {
            .preview-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .preview-info {
                width: 100%;
            }
        }   
