.earn-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 40px auto;
    padding: 0;
    text-align: left;
}

.earn-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

.earn-title {
    font-size: 60px;
    font-weight: bold;
    color: #000;
    margin: 0 0 30px 0;
    text-align: center;
    width: 100%;
}

.earn-rocket {
    position: absolute;
    right: 20px;
    top: -80px;
    width: 140px;
    height: auto;
    transform: scaleX(-1) rotate(45deg);
}

.earn-button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.earn-button-wrapper .cta-button {
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
}

.earn-button-wrapper .cta-button:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.earn-button-wrapper .cta-button::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 24px;
    width: calc(100% - 65px);
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.earn-button-wrapper .cta-button:hover::after {
    transform: scaleX(1);
}

.earn-button-wrapper .cta-button:not(:hover)::after {
    transform-origin: right;
}

.faq {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    text-align: center;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    padding: 10px 0;
    text-align: center;
    font-size: 1.4rem;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 0 10px;
    color: #555;
    text-align: left;
    margin: 0;
  }

  .faq-answer.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 20px 10px;
    margin: 10px 0;
    text-align: left;
  }

  .plus-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    color: #000;
  }

  .tab-wrapper {
        display: flex;
        justify-content: center;
        height: auto;
        max-width: 1400px;
        margin: 0 auto;
        padding: 40px 0;
    }

    .tab-container {
        display: flex;
        width: 100%;
        max-width: 1400px;
        border-radius: 20px;
        overflow: visible;
        box-shadow: none;
        min-height: 500px;
        position: relative;
    }

    .tab-buttons {
        flex: 1;
        background-color: #000;
        color: #fff;
        padding: 20px;
        position: relative;
        border-radius: 40px;
        z-index: 1;
    }

    .tab-buttons button {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: none;
        border: none;
        color: #fff;
        text-align: left;
        margin: 10px 0;
        padding: 15px 20px;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 10px;
        width: 100%;
    }

    .tab-buttons .active {
        background-color: #6754e9;
        font-weight: bold;
        border-radius: 135px;
        width: 120%;
        position: relative;
        z-index: 3;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .tab-buttons .active::after {
        content: "\f068";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 20px;
        font-size: 18px;
        width: 40px;
        height: 40px;
        background-color: #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

    .tab-content-wrapper {
        flex: 3;
        background-color: #fff;
        color: #333;
        padding: 30px 60px;
        display: flex;
        align-items: center;
        border-radius: 0 40px 40px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-left: -40px;
        position: relative;
    }

    .tab-section {
        max-width: 80%;
        margin: 0 auto;
        padding: 20px 0;
    }

    .tab-section h2 {
        margin-top: 0;
        color: #333;
        margin-bottom: 20px;
        font-size: 40px;
    }

    .tab-section p {
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .action-button {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        color: #fff;
        font-weight: 600;
        font-size: 18px;
        padding: 12px 24px;
        border-radius: 35px;
        background-color: #000;
        transition: all 0.3s ease;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 1px;
        gap: 8px;
        overflow: hidden;
    }

    .action-button::after {
        content: '\f061'; 
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-left: 8px;
    }

    .action-button::before {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 24px;
        width: calc(100% - 65px);
        height: 2px;
        background-color: #fff;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .action-button:hover::before {
        transform: scaleX(1);
    }

    .action-button:not(:hover)::before {
        transform-origin: right;
    }

    .action-button span {
        position: relative;
        display: inline-block;
    }

    .action-button span::after {
        display: none;
    }

    .consulting-section {
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px;
        position: relative;
    }

    .consulting-headline {
        font-size: 2.5rem;
        font-weight: bold;
        margin: 15px auto 40px;
        text-align: center;
        max-width: 50%;
        padding: 0 20px;
        line-height: 1.3;
    }

    .consulting-content {
        display: flex;
        gap: 60px;
        align-items: flex-start;
        justify-content: space-between;
    }

    .consulting-image {
        flex: 1;
        order: 1;
    }

    .consulting-image img {
        width: 100%;
        height: auto;
        border-radius: 35px;
        object-fit: cover;
    }

    .consulting-text {
        flex: 1;
        order: 2;
        padding-top: 20px;
        padding-left: 40px;
    }

    .consulting-text h2 {
        font-size: 1.9rem;
        font-weight: bold;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .consulting-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    @media (max-width: 768px) {
        .consulting-content {
            flex-direction: column;
            gap: 30px;
        }
        
        .consulting-headline {
            font-size: 1.8rem;
            margin: 10px auto 30px;
            padding: 0 15px;
        }
        
        .consulting-image, 
        .consulting-text {
            order: 0;
            padding-left: 0;
        }
        
        .consulting-text h2 {
            font-size: 1.5rem;
        }
        
        .consulting-text p {
            font-size: 1rem;
        }
        
        .brand-text {
            font-size: 0.9rem;
            letter-spacing: 1.5px;
            margin-bottom: 3px;
        }
    }

    .ecommerce-container {
        margin: 0 auto;
        padding: 0;
        line-height: 1.6;
        max-width: 1400px;
        width: 100%;
    }

    .ecommerce-container .divider {
        height: 2px;
        background-color: #ddd;
        margin: 30px auto;
        width: 100%;
        max-width: 1400px;
    }

    .ecommerce-container .container {
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .ecommerce-container .heading {
        text-align: left;
        font-size: 3.5em;
        font-weight: bold;
        margin-bottom: 20px;
        line-height: normal;
    }

    .ecommerce-container .description {
        margin-bottom: 30px;
        text-align: left;
        font-size: 1.3rem;
    }

    .ecommerce-container .content {
        display: flex;
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
    }

    .ecommerce-container .content .left {
        flex: 2;
    }

    .ecommerce-container .content .right {
        flex: 1;
        padding-top: 50px;
    }

    .vertical-line {
        width: 2px;
        background-color: #ddd;
        align-self: stretch;
        margin: 0 20px;
    }

    .ecommerce-container .checklist {
        list-style: none;
        padding: 0;
    }

    .ecommerce-container .checklist li {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        font-size: 1em;
    }

    .ecommerce-container .checklist li i {
        margin-right: 10px;
        color: #6c5ce7;
        font-size: 20px;
    }

    .ecommerce-container .line {
        border-left: 2px solid #eee;
        height: 100%;
        margin: 0 15px;
    }

    .intro-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 40px 0;
        border-radius: 10px;
        max-width: 1400px;
        width: 100%;
        margin: 30px auto 0;
        gap: 40px;
    }

    .text-content {
        flex: 1.2;
        text-align: left;
        padding-right: 20px;
    }

    .text-content h3 {
        font-size: clamp(16px, 2vw, 18px);
        margin-bottom: 10px;
    }

    .text-content h1 {
        font-size: clamp(45px, 5vw, 70px);
        line-height: 1.2;
        text-transform: uppercase;
        margin-bottom: 30px;
        letter-spacing: 0.5px;
    }

    .text-content p {
        font-size: clamp(16px, 2vw, 20px);
        margin: 30px 0;
        width: 90%;
        max-width: 800px;
        line-height: 1.6;
        letter-spacing: 0.2px;
    }

    .text-content .cta-button {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        margin-top: 40px;
        padding: 14px 28px;
        border-radius: 35px;
        background-color: #000;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .text-content .cta-button i {
        margin-left: 8px;
    }

    .text-content .cta-button::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 24px;
        width: calc(100% - 65px);
        height: 2px;
        background-color: #fff;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .text-content .cta-button:hover::after {
        transform: scaleX(1);
    }

    .text-content .cta-button:not(:hover)::after {
        transform-origin: right;
    }

    .image-content {
        flex: 0.8;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .image-content img {
        max-width: 100%;
        height: auto;
        border-radius: clamp(25px, 5vw, 50px);
        object-fit: cover;
        max-height: 450px;
    }

    @media (max-width: 992px) {
        .intro-section {
            padding: 30px 20px;
            gap: 30px;
        }
        
        .text-content h1 {
            font-size: 40px;
        }
        
        .text-content p {
            width: 100%;
            font-size: 18px;
        }
    }

    @media (max-width: 768px) {
        .intro-section {
            flex-direction: column;
            padding: 20px;
            gap: 30px;
            text-align: center;
        }
        
        .text-content {
            padding-right: 0;
            text-align: center;
        }
        
        .text-content h1 {
            font-size: 42px;
        }
        
        .text-content p {
            width: 90%;
            margin: 20px auto;
            font-size: 18px;
        }
        
        .image-content {
            width: 100%;
            max-width: 450px;
        }
    }

    @media (max-width: 480px) {
        .intro-section {
            padding: 15px;
            gap: 20px;
        }
        
        .text-content h1 {
            font-size: 36px;
            line-height: 1.2;
        }
        
        .text-content h3 {
            font-size: 14px;
        }
        
        .text-content p {
            font-size: 16px;
            margin-top: 15px;
            width: 100%;
        }
        
        .text-content .cta-button {
            margin-top: 25px;
            font-size: 14px;
            padding: 10px 20px;
        }
        
        .image-content img {
            border-radius: 20px;
            max-height: 250px;
        }
    }

    .brand-text {
        display: block;
        text-align: center;
        font-size: 1rem;
        font-weight: 600;
        color: #000;
        margin-bottom: 5px;
        letter-spacing: 2px;
    }

    .gainer-text {
        text-align: center;
        max-width: 800px;
        margin: -20px auto 40px;
        font-size: 1.1rem;
        line-height: 1.6;
        color: #484a4c;
        padding: 0 20px;
    }

    @media (max-width: 768px) {
        .gainer-text {
            font-size: 1rem;
            margin: -15px auto 30px;
            padding: 0 15px;
        }
    }

    .divider {
        height: 2px;
        background-color: #ddd;
        margin: 30px auto;
        width: 100%;
        max-width: 1400px;
    }

    @media (max-width: 768px) {
        .divider {
            margin: 20px auto;
        }
    }

    @media (max-width: 768px) {
        .tab-wrapper {
            padding: 20px 10px;
        }
        
        .tab-container {
            flex-direction: column;
            min-height: auto;
        }
        
        .tab-buttons {
            width: 100%;
            border-radius: 45px;
            margin-bottom: 0;
            padding: 15px;
            background-color: #000;
            z-index: 10;
        }
        
        .tab-content-wrapper {
            margin-left: 0;
            border-radius: 20px;
            padding: 20px;
            margin-top: 0;
            position: relative;
            z-index: 5;
            display: none;
            width: 100%;
            background-color: #fff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .tab-button {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            color: #fff;
            text-align: left;
            margin: 10px 0;
            padding: 15px 20px;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 10px;
            width: 100%;
        }
        
        .tab-button.active {
            background-color: #6754e9;
            font-weight: bold;
            border-radius: 50px;
            margin-bottom: 0;
            width: 340px;
        }
        
        .tab-button.active + .tab-content-wrapper {
            display: block;
            border-radius: 45px;
            margin: 10px 0 20px 0;
        }
        
        .tab-section {
            max-width: 100%;
            padding: 10px;
            display: block !important;
        }
        
        .tab-section h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }
        
        .tab-section p {
            font-size: 16px;
            line-height: 1.5;
        }
        
        .consulting-headline {
            max-width: 100%;
            font-size: 1.5rem;
        }
        
        .earn-wrapper {
            position: relative;
        }
        
        .earn-box {
            padding-right: 0;
            text-align: center;
            position: relative;
            padding-top: 40px;
        }
        
        .earn-rocket {
            width: 80px;
            height: auto;
            top: -40px;
            right: 50%;
            transform: translateX(50%) scaleX(-1) rotate(-10deg);
            position: absolute;
        }
        
        .earn-title {
            font-size: 28px;
            margin-bottom: 30px;
            text-align: center;
            width: 100%;
        }
        
        .earn-button-wrapper {
            text-align: center;
            margin: 0 auto;
            display: flex;
            justify-content: center;
        }
        
        .earn-button-wrapper .cta-button {
            margin: 0 auto;
        }
        
        .faq-question {
            font-size: 16px;
            padding: 15px 10px;
        }
        
        .solutions-grid {
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 0 15px;
        }
        
        .solution-box {
            min-height: auto;
            padding: 20px;
        }
        
        .ecommerce-container .container {
            padding: 15px;
        }
        
        .ecommerce-container .heading {
            font-size: 24px;
            line-height: 1.3;
        }
        
        .ecommerce-container .description {
            font-size: 16px;
        }
        
        .consulting-content {
            padding: 0 15px;
        }
        
        .consulting-text {
            padding: 0;
        }
        
        .faq {
            padding: 15px;
        }
    }

    @media (max-width: 480px) {
        .intro-section {
            flex-direction: column;
            padding: 15px;
            gap: 10px;
        }
        
        .text-content {
            margin-bottom: 10px;
        }
        
        .text-content h1 {
            font-size: 32px;
            line-height: 1.2;
        }
        
        .text-content h3 {
            font-size: 14px;
        }
        
        .text-content p {
            font-size: 19px;
            margin-top: 15px;
        }
        
        .text-content .cta-button {
            margin-top: 65px;
            font-size: 14px;
            padding: 10px 20px;
        }
        
        .image-content img {
            border-radius: 20px;
        }
        
        .ecommerce-container .checklist li {
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .ecommerce-container .checklist li i {
            font-size: 16px;
        }
        
        .consulting-headline {
            font-size: 20px;
            line-height: 1.4;
        }
        
        .gainer-text {
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .solution-title {
            font-size: 18px;
        }
        
        .solution-description {
            font-size: 14px;
        }
        
        .earn-title {
            font-size: 26px;
            margin-bottom: 40px;
        }
        
        .earn-button-wrapper .cta-button {
            font-size: 14px;
            padding: 10px 20px;
        }
        
        .faq-answer {
            font-size: 14px;
        }
        
        .faq-question {
            font-size: 14px;
            text-align: left;
        }
        
        .earn-rocket {
            width: 70px;
            top: -70px;
            transform: scaleX(-1) rotate(31deg);
            right: -40px;
        }
    }

    /* Orta boyutlu mobil cihazlar için düzenlemeler */
    @media (min-width: 481px) and (max-width: 768px) {
        .intro-section {
            padding: 20px;
        }
        
        .text-content h1 {
            font-size: 36px;
        }
        
        .consulting-headline {
            font-size: 24px;
        }
        
        .solutions-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Tablet için düzenlemeler */
    @media (min-width: 769px) and (max-width: 1024px) {
        .consulting-headline {
            max-width: 80%;
            font-size: 2rem;
        }
        
        .solutions-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .tab-content-wrapper {
            padding: 25px 40px;
        }
        
        .tab-section {
            max-width: 90%;
        }
    }

    @media screen and (max-width: 836px) {
        .intro-section .image-container {
            margin-bottom: 10px;
        }
        
        .intro-section .content-container {
            margin-top: 10px;
        }
        
        .intro-section {
            gap: 10px;
        }
    }

    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(16px, 2vw, 24px);
        width: 100%;
        max-width: 1400px;
        margin: 40px auto;
    }

    .solution-box {
        min-height: 350px;
        padding: clamp(16px, 3vw, 24px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background-color: #fff;
        position: relative;
        border-radius: 34px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .solution-box:hover {
        transform: translateY(-5px);
    }

    .solution-icon {
        width: clamp(48px, 6vw, 64px);
        height: clamp(48px, 6vw, 64px);
        border-radius: 50%;
        background-color: #F7F7FA;
        color: #6754E9;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: clamp(8px, 1.5vw, 16px);
    }

    .solution-title {
        font-size: clamp(22px, 2.5vw, 24px);
        font-weight: 500;
        color: #000;
        text-decoration: none;
        margin: 8px 0;
        padding: 8px 0;
        transition: color 0.3s ease;
        font-family: Kanit, sans-serif;
    }

    .solution-description {
        font-size: clamp(16px, 2.5vw, 18px);
        color: #666;
        line-height: 1.6;
        margin: 8px 0;
        flex-grow: 1;
    }

    .solution-more {
        color: #000;
        text-decoration: none;
        font-size: clamp(12px, 1.8vw, 14px);
        font-weight: 600;
        padding: 8px 0;
        margin-top: auto;
        position: relative;
        transition: color 0.3s ease;
    }

    .solution-more:hover {
        color: #6754E9;
    }

    .solution-more::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background-color: #6754E9;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

    .solution-more:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    @media (max-width: 768px) {
        .solutions-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            padding: 0 16px;
        }
    }

    @media (max-width: 480px) {
        .solution-box {
            min-height: 300px;
            border-radius: 24px;
        }
    }

    .tab-button::after {
        content: "\f067";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: 20px;
        font-size: 18px;
        width: 40px;
        height: 40px;
        background-color: #6754e9;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    @media (max-width: 768px) {
        .tab-button::after {
            opacity: 1;
            background-color: #e9e5ff;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            color: #6754e9;
        }
        
        .tab-buttons .active::after {
            content: "\f068";
            background-color: #e9e5ff;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            color: #6754e9;
        }
    }

    @media (max-width: 768px) {
        .plus-icon {
            color: #6754e9;
            font-size: 16px;
        }
    }

    /* Masaüstü görünümde tab butonları için sağ ok ikonu */
    @media (min-width: 769px) {
        .tab-button::after {
            content: "";
            opacity: 0;
            display: none;
        }
        
        .tab-buttons .active::after {
            content: "\f061"; /* arrow-right icon */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: 20px;
            font-size: 18px;
            opacity: 1;
            background-color: #000;
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }

    .seo-text-area {
        width: 100%;
        height: 75px;
        margin: 20px 0;
        padding: 10px;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        background-color: #fff;
        font-size: 16px;
        line-height: 1.5;
        overflow-y: auto;
        resize: none;
        transition: border-color 0.3s ease;
    }

    .seo-text-area:focus {
        outline: none;
        border-color: #6754e9;
        box-shadow: 0 0 5px rgba(103, 84, 233, 0.3);
    }

    .seo-text-container {
        width: 100%;
        position: relative;
        margin-bottom: 20px;
    }

    .seo-text-label {
        display: block;
        text-align: left;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
    }

    @media (max-width: 768px) {
        .seo-text-area {
            height: 75px;
            font-size: 14px;
        }
        
        .seo-text-label {
            font-size: 14px;
        }
    }

    .seo-content {
        width: 100%;
        height: 75px;
        overflow: hidden;
        text-align: left;
        font-size: 14px;
        line-height: 1.5;
        color: #666;
        padding: 0 15px;
    }

    .seo-content:hover {
        overflow-y: auto;
        scrollbar-width: none; /* Firefox için */
        -ms-overflow-style: none; /* IE ve Edge için */
    }

    .seo-content::-webkit-scrollbar {
        display: none; /* Chrome, Safari ve Opera için */
    }

    .seo-content h1,
    .seo-content h2,
    .seo-content h3 {
        text-align: center;
        margin: 8px 0;
    }

    .seo-content h1 {
        font-size: 18px;
        color: #333;
        margin-bottom: 15px;
    }

    .seo-content h2 {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        margin-bottom: 12px;
    }

    .seo-content h3 {
        font-size: 15px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
    }

    .seo-content h1 + p,
    .seo-content h2 + p,
    .seo-content h3 + p {
        margin-top: 8px;
    }

    .seo-content p {
        margin: 0;
        padding: 0;
        margin-bottom: 10px;
    }

    @media (max-width: 768px) {
        .seo-content {
            font-size: 13px;
            padding: 0 10px;
        }
        
        .seo-content h1 {
            font-size: 16px;
            margin-bottom: 12px;
        }
        
        .seo-content h2 {
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .seo-content h3 {
            font-size: 13px;
            margin-bottom: 8px;
        }
        
        .seo-content h1 + p,
        .seo-content h2 + p,
        .seo-content h3 + p {
            margin-top: 6px;
        }
    }

    /* Pricing Table Styles */
    .pricing-table {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        border-collapse: collapse;
        font-family: 'Inter', sans-serif;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    }

    .pricing-table .header {
        display: flex;
        background-color: #f7f7fa;
        border-bottom: 1px solid #e5e7eb;
    }

    .pricing-table .header .package-name {
        width: 30%;
        padding: 20px;
        font-weight: bold;
        text-align: left;
        border-right: 1px solid #e5e7eb;
    }

    .pricing-table .header .package-item {
        width: 17.5%;
        padding: 20px 10px;
        text-align: center;
        font-weight: bold;
        font-size: 18px;
        border-right: 1px solid #e5e7eb;
        position: relative;
    }

    .pricing-table .header .package-item:last-child {
        border-right: none;
    }

    .price-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    .old-price {
        text-decoration: line-through;
        color: #999;
        font-size: 14px;
        font-weight: normal;
    }

    .new-price {
        color: #333;
        font-size: 18px;
        font-weight: bold;
        margin: 5px 0;
    }

    .discount {
        background-color: #e6f7e6;
        color: #28a745;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: normal;
    }

    .feature-row {
        display: flex;
        border-bottom: 1px solid #e5e7eb;
        background-color: #fff;
    }

    .feature-row.section-header {
        background-color: #f7f7fa;
    }

    .feature-row .feature-name {
        width: 30%;
        padding: 15px 20px;
        text-align: left;
        border-right: 1px solid #e5e7eb;
        display: flex;
        align-items: center;
        position: relative;
    }

    .feature-row .feature-status {
        width: 17.5%;
        padding: 15px 10px;
        text-align: center;
        border-right: 1px solid #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-row .feature-status:last-child {
        border-right: none;
    }

    .info-icon {
        position: relative;
        display: inline-flex;
        margin-left: 5px;
        cursor: pointer;
        vertical-align: middle;
    }

    .info-icon .info {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background-color: #6754e9;
        color: white;
        font-size: 11px;
        font-weight: bold;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(103, 84, 233, 0.3);
    }

    /* Harici SVG yerine CSS ile info ikonu oluşturma */
    .info-icon .info:before {
        content: "i";
        font-style: normal;
        font-family: serif;
        font-weight: bold;
        line-height: 1;
    }

    .info-icon:hover .info {
        background-color: #5344c7;
        transform: scale(1.1);
    }

    /* SVG ikonu gizle */
    .info-icon .svg-icon {
        display: none;
    }

    .tooltip {
        position: absolute;
        top: -10px;
        left: 30px;
        width: 250px;
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        padding: 15px;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        transform: translateY(-50%);
        border: 1px solid #f0f0f0;
    }

    .tooltip:before {
        content: "";
        position: absolute;
        left: -8px;
        top: 50%;
        transform: translateY(-50%);
        border-width: 8px 8px 8px 0;
        border-style: solid;
        border-color: transparent white transparent transparent;
        filter: drop-shadow(-3px 0px 2px rgba(0, 0, 0, 0.05));
    }

    .tooltip h4 {
        margin: 0 0 8px;
        font-size: 14px;
        color: #333;
    }

    .tooltip p {
        margin: 0;
        font-size: 13px;
        color: #666;
        line-height: 1.4;
    }

    .info-icon:hover .tooltip {
        opacity: 1;
        visibility: visible;
    }
    
    /* Tooltip pozisyon düzeltmesi - alt kısımdaki öğeler için */
    .feature-row:nth-last-of-type(-n+5) .tooltip {
        bottom: 0;
        top: auto;
        transform: translateY(0);
    }
    
    /* Mobil görünüm için tooltip düzeltmesi */
    @media (max-width: 768px) {
        .tooltip {
            width: 250px;
            left: 25px;
        }
        
        .feature-row:nth-last-of-type(-n+8) .tooltip {
            bottom: 0;
            top: auto;
            transform: translateY(0);
        }
    }

    .check-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        position: relative;
        background-image: none;
        line-height: 1;
    }

    .check-icon:before {
        content: "✓";
        color: #28a745;
        font-size: 20px;
        font-weight: bold;
        line-height: 1;
    }

    .cross-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        position: relative;
        background-image: none;
        line-height: 1;
    }

    .cross-icon:before {
        content: "✕";
        color: #dc3545;
        font-size: 20px;
        font-weight: bold;
        line-height: 1;
    }

    /* Hem span hem i etiketleri için aynı stili uygula */
    i.check-icon, span.check-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        position: relative;
        background-image: none;
        line-height: 1;
    }

    i.check-icon:before, span.check-icon:before {
        content: "✓";
        color: #28a745;
        font-size: 20px;
        font-weight: bold;
        line-height: 1;
    }

    i.cross-icon, span.cross-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        position: relative;
        background-image: none;
        line-height: 1;
    }

    i.cross-icon:before, span.cross-icon:before {
        content: "✕";
        color: #dc3545;
        font-size: 20px;
        font-weight: bold;
        line-height: 1;
    }

    @media (max-width: 992px) {
        .pricing-table .header .package-name {
            width: 40%;
        }
        
        .pricing-table .header .package-item {
            width: 15%;
        }
        
        .feature-row .feature-name {
            width: 40%;
        }
        
        .feature-row .feature-status {
            width: 15%;
        }
    }

    @media (max-width: 768px) {
        .pricing-table {
            display: block;
            overflow-x: auto;
        }
        
        .pricing-table .header {
            min-width: 700px;
        }
        
        .feature-row {
            min-width: 700px;
        }
        
        .pricing-table .header .package-name {
            width: 35%;
        }
        
        .pricing-table .header .package-item {
            width: 16.25%;
            font-size: 16px;
        }
        
        .feature-row .feature-name {
            width: 35%;
            font-size: 14px;
        }
        
        .feature-row .feature-status {
            width: 16.25%;
            font-size: 14px;
        }
        
        .new-price {
            font-size: 16px;
        }
        
        .old-price {
            font-size: 12px;
        }
        
        .discount {
            font-size: 10px;
        }
    }

    @media (max-width: 480px) {
        .pricing-table .header {
            min-width: 600px;
        }
        
        .feature-row {
            min-width: 600px;
        }
        
        .pricing-table .header .package-item {
            font-size: 14px;
        }
        
        .feature-row .feature-name {
            font-size: 13px;
        }
        
        .feature-row .feature-status {
            font-size: 13px;
        }
        
        .tooltip {
            width: 200px;
        }
    }

    .pricing-title {
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #222;
    }
    
    .pricing-description {
        text-align: center;
        font-size: 18px;
        color: #666;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    @media (max-width: 768px) {
        .pricing-title {
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .pricing-description {
            font-size: 16px;
            margin-bottom: 20px;
            padding: 0 15px;
        }
    }
    
    @media (max-width: 480px) {
        .pricing-title {
            font-size: 24px;
        }
        
        .pricing-description {
            font-size: 14px;
        }
    }
    
