.deep-marketing-container {
    font-family: 'DM Sans', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    border-radius: 16px;
    background-color: #FCFCFC;
}

.deep-marketing-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.vector-icon {
    width: 60px;
    height: 60px;
}

.vector-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.deep-title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    line-height: 1.45;
    margin: 0;
}

.line-separator {
    height: 2px;
    background-color: #C9C9C9;
    margin: 20px 0 30px;
}

.marketing-service {
    margin-bottom: 30px;
}


.service-content {
    color: #000;
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
}

.service-content p {
    margin: 0 0 10px 0;
}

@media (max-width: 768px) {
    .deep-marketing-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .deep-title {
        font-size: 32px;
    }
    
    .service-content {
        font-size: 14px;
    }
}


