
        :root {
            --primary-color: #FF9500;
            --secondary-color: #232F3E;
            --accent-color: #37475A;
            --light-bg: #F7F9FC;
            --white: #FFFFFF;
            --text-dark: #232F3E;
            --text-light: #6B7280;
            --gradient-primary: linear-gradient(135deg, #FF9500 0%, #FF7A00 100%);
            --gradient-secondary: linear-gradient(135deg, #232F3E 0%, #37475A 100%);
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            
        }




        .hero-section {
            background: var(--gradient-secondary);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero-section::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="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .ppc-section-title-main {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        .ad-types-section {
            background: var(--white);
        }

        .ad-type-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 149, 0, 0.1);
            height: 100%;
        }

        .ad-type-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .ad-type-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--white);
            font-size: 1.8rem;
        }

        .ad-type-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .ad-type-description {
            color: var(--text-light);
            line-height: 1.8;
        }

        .language-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            background: var(--gradient-primary);
            border: none;
            color: var(--white);
            padding: 12px 20px;
            border-radius: 50px;
            font-weight: 500;
            box-shadow: 0 5px 20px rgba(255, 149, 0, 0.3);
            transition: all 0.3s ease;
        }

        .language-toggle:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 149, 0, 0.4);
        }

        .services-section {
            background: var(--light-bg);
        }

        .ppc-service-item {
            background: var(--white);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border-left: 4px solid var(--primary-color);
        }

        .ppc-service-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .service-number {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .ppc-service-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--text-dark);
        }

        .ppc-service-description {
            color: var(--text-light);
            line-height: 1.7;
        }

        .ppc-hidden-content {
            display: none;
        }

        .stats-section {
            background: var(--gradient-secondary);
            color: var(--white);
        }

        .stat-item {
            text-align: center;
            padding: 2rem 1rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-top: 0.5rem;
        }

        .cta-section {
            background: var(--white);
            text-align: center;
        }

        .cta-button {
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 149, 0, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 149, 0, 0.4);
            color: var(--white);
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .ad-type-card {
                margin-bottom: 2rem;
            }
        }
    

        /* ikinci bölüm */

           .ppc-amazon-gradient {
            background: linear-gradient(135deg, #FF9500 0%, #FF6B00 100%);
        }
        
        .ppc-amazon-navy {
            background-color: #232F3E;
            color: white;
        }
        
        .ppc-service-card {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .ppc-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }
        
        .ppc-icon-box {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #FF9500 0%, #FF6B00 100%);
            color: white;
            font-size: 2rem;
        }
        
        .ppc-language-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            background: #232F3E;
            color: white;
            border: none;
            border-radius: 25px;
            padding: 10px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .ppc-language-toggle:hover {
            background: #FF9500;
            color: white;
        }
        
        .ppc-hidden {
            display: none !important;
        }
        
        .ppc-section-title {
            position: relative;
            margin-bottom: 3rem;
        }
        
        .ppc-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #FF9500 0%, #FF6B00 100%);
            border-radius: 2px;
        }
        
        .ppc-stats-section {
            background: linear-gradient(135deg, #232F3E 0%, #1a252f 100%);
            color: white;
        }
        
        .ppc-stat-item {
            text-align: center;
            padding: 2rem 1rem;
        }
        
        .ppc-stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #FF9500;
            display: block;
        }
        
        .ppc-cta-section {
            background: linear-gradient(135deg, #FF9500 0%, #FF6B00 100%);
            color: white;
        }